Arduino函数
功能目录
结构
IO输入输出
控制
if:条件
for:for循环
while:while循环
delay():毫秒延时
delayMicroseconds():微秒延时
millis():获取Arduino开机后运行的时间
数据类型
字符串
数学运算
逻辑运算
串口
扩展库的安装和使用
传感器
执行器
显示器
通信
软件下载
三级实操
四级理论难点及实操
Arduino函数
控制
delayMicroseconds():微秒延时
查看页面源码
delayMicroseconds():微秒延时
delayMicroseconds()与
delay()
函数都可用于暂停程序运行。不同的是,delayMicroseconds()的参数单位是微秒(1毫秒=1000微秒)。