查看DelayMicroseconds()的源代码
←
DelayMicroseconds()
跳转至:
导航
、
搜索
因为以下原因,你没有权限编辑本页:
你刚才请求的操作只对属于该用户组的用户开放:
用户
您可以查看并复制此页面的源代码:
<font color="orange" size="+1">'''描述'''</font> 将程序暂停指定为参数的时间(以微秒为单位)。 在一毫秒内有一千微秒,一秒钟就有一百万微秒。 目前,将产生准确延误的最大价值是16383.这可能会在未来的Arduino版本中发生变化。 对于超过几千微秒的延迟,应该使用delay()。 <font color="orange" size="+1">'''语法'''</font> <pre style="color:dimgray"> delayMicroseconds(us) </pre> <font color="orange" size="+1">'''参数'''</font> * us: 要暂停的微秒数(unsigned int) <font color="orange" size="+1">'''返回'''</font> None <font color="orange" size="+1">'''示例'''</font> <pre style="color:dimgray"> int outPin = 8; // digital pin 8 void setup() { pinMode(outPin, OUTPUT); // sets the digital pin as output } void loop() { digitalWrite(outPin, HIGH); // sets the pin on delayMicroseconds(50); // pauses for 50 microseconds digitalWrite(outPin, LOW); // sets the pin off delayMicroseconds(50); // pauses for 50 microseconds } </pre> 配置引脚号8作为输出引脚。 它发送大约100微秒周期的脉冲串。 近似是由于执行代码中的其他指令。 <font color="red" size="">'''注意'''</font> 该功能在3微秒或更高的范围内非常准确地工作。 我们无法保证延迟微秒将在较小的延迟时间内精确地执行。 从Arduino 0018起,delayMicroseconds()不再禁止中断。 <font color="orange" size="+1">'''扩展阅读'''</font> :- [[millis()]] :- [[micros()]] :- [[delay()]] ---- [[Arduino语法参考 | 返回Arduino语法参考列表]] 更多建议和问题欢迎反馈至 [http://www.yfrobot.com YFRobot论坛]
返回
DelayMicroseconds()
。
导航菜单
个人工具
登录
名字空间
页面
讨论
不转换
变种
不转换
简体
繁體
大陆简体
香港繁體
澳門繁體
大马简体
新加坡简体
台灣正體
查看
阅读
查看源代码
查看历史
操作
搜索
导航
首页
YF-论坛提问
YFRobot-直营店
YFRobot-企业店
Arduino
Arduino之入门篇
Arduino入门教程
Arduino语法参考
Arduino库
Arduino核心代码
编程平台
Mixly库
Mind+库
MakeCode扩展
传感器系列
积木式传感器系列
黑板传感器系列
蓝板传感器系列
Micro:Bit
Micro:Bit 通用基础教程
Valon智能车
Valon-I
帮助
帮助
wiki语法参考
工具箱
链入页面
相关更改
特殊页面
页面信息