当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Arduino loop()用法及代码示例


[草图]

说明

在创建一个初始化和设置初始值的setup() 函数之后,loop() 函数完全按照其名称所暗示的那样工作,并连续循环,允许您的程序更改和响应。用它来主动控制 Arduino 板。

示例代码

int buttonPin = 3;

// setup initializes serial and the button pin
void setup() {
  Serial.begin(9600);
  pinMode(buttonPin, INPUT);
}

// loop checks the button pin each time,
// and will send serial if it is pressed
void loop() {
  if (digitalRead(buttonPin) == HIGH) {
    Serial.write('H');
  }
  else {
    Serial.write('L');
  }

  delay(1000);
}

相关用法


注:本文由纯净天空筛选整理自arduino.cc大神的英文原创作品 loop()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。