1 Star 0 Fork 7

wwkkww/WS2812FX_C_Lang

forked from dma/WS2812FX_C_Lang 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
arduino_api.h 463 Bytes
一键复制 编辑 原始数据 按行查看 历史
dma 提交于 2020-10-25 18:28 +08:00 . 基于stm32+TencentOS适配部分arduino接口
#ifndef __ARDUINO_API_H
#define __ARDUINO_API_H
#include <stdint.h>
#define arduino_min(a,b) ((a)<(b)?(a):(b))
#define arduino_max(a,b) ((a)>(b)?(a):(b))
#define arduino_abs(x) ((x)>0?(x):-(x))
#define arduino_constrain(amt,low,high) ((amt)<(low)?(low):((amt)>(high)?(high):(amt)))
uint32_t arduino_millis(void);
void arduino_delay(uint32_t ms);
int32_t arduino_random(int32_t max);
int32_t arduino_random_at(int32_t min, int32_t max);
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/wwkkww1983/ws2812fx_c_lang.git
[email protected]:wwkkww1983/ws2812fx_c_lang.git
wwkkww1983
ws2812fx_c_lang
WS2812FX_C_Lang
master

搜索帮助