查看Delay()的源代码
←
Delay()
跳转至:
导航
、
搜索
因为以下原因,你没有权限编辑本页:
你刚才请求的操作只对属于该用户组的用户开放:
用户
您可以查看并复制此页面的源代码:
<font color="orange" size="+1">'''描述'''</font> 暂停程序指定为参数的时间量(以毫秒为单位)。 (一秒钟内有1000毫秒) <font color="orange" size="+1">'''语法'''</font> <pre style="color:dimgray"> delay(ms) </pre> <font color="orange" size="+1">'''参数'''</font> ms: 要暂停的毫秒数(unsigned long) <font color="orange" size="+1">'''返回'''</font> nothing <font color="orange" size="+1">'''示例'''</font> <pre style="color:dimgray"> int ledPin = 13; // LED connected to digital pin 13 void setup() { pinMode(ledPin, OUTPUT); // sets the digital pin as output } void loop() { digitalWrite(ledPin, HIGH); // sets the LED on delay(1000); // waits for a second digitalWrite(ledPin, LOW); // sets the LED off delay(1000); // waits for a second } </pre> <font color="red" size="">'''警告'''</font> 虽然使用delay()函数创建闪烁的LED很容易,并且许多草图对于诸如开关去抖动之类的任务使用短延迟,但在草图中使用delay()具有显着的缺点。 在延迟功能中,传感器,数学计算或引脚操作的其他读数都不能继续,因此实际上它会使大部分其他活动停止。 对于控制时序的其他方法,请参阅下面的[[millis()]]函数和草图。 更多知识渊博的程序员通常避免对延迟超过10毫秒的事件定时使用delay(),除非Arduino素描非常简单。 某些事情会继续进行,而delay()函数则控制Atmega芯片,因为延迟功能不会禁止中断。 记录RX引脚上出现的串行通讯,维持PWM([[analogWrite()|analogWrite]])值和引脚状态,并且中断([[attachInterrupt()|interrupts]])将按原样工作。 <font color="orange" size="+1">'''扩展阅读'''</font> :- [[millis()]] :- [[micros()]] :- [[delayMicroseconds()]] :- [https://www.arduino.cc/en/Tutorial/BlinkWithoutDelay Blink Without Delay example] ---- [[Arduino语法参考 | 返回Arduino语法参考列表]] 更多建议和问题欢迎反馈至 [http://www.yfrobot.com YFRobot论坛]
返回
Delay()
。
导航菜单
个人工具
登录
名字空间
页面
讨论
不转换
变种
不转换
简体
繁體
大陆简体
香港繁體
澳門繁體
大马简体
新加坡简体
台灣正體
查看
阅读
查看源代码
查看历史
操作
搜索
导航
首页
YF-论坛提问
YFRobot-直营店
YFRobot-企业店
Arduino
Arduino之入门篇
Arduino入门教程
Arduino语法参考
Arduino库
Arduino核心代码
编程平台
Mixly库
Mind+库
MakeCode扩展
传感器系列
积木式传感器系列
黑板传感器系列
蓝板传感器系列
Micro:Bit
Micro:Bit 通用基础教程
Valon智能车
Valon-I
帮助
帮助
wiki语法参考
工具箱
链入页面
相关更改
特殊页面
页面信息