Loop()
来自ALSROBOT WiKi
setup() 函数用于初始化, loop() 函数用于循环执行. 初始化函数一般放在程序开头, 用于设置一些引脚的输出/输入模式, 初始化串口通讯等工作. loop() 函数中的代码将被循环执行, 例如: 读入引脚状态, 设置引脚输出状态等. 示例:
int buttonPin = 3; void setup() { Serial.begin(9600); //初始化串口 pinMode(buttonPin, INPUT); //设置3号引脚为输入模式 } void loop() { if (digitalRead(buttonPin) == HIGH) serialWrite('H'); else serialWrite('L'); delay(1000); }