Arduino - delayMicroseconds() 函数



delayMicroseconds() 函数接受一个整数(或数字)参数。此数字表示时间,并以微秒为单位。毫秒中有 1000 微秒,秒中有 100 万微秒。

目前,可以产生精确延迟的最大值为 16383。这可能会在未来的 Arduino 版本中发生变化。对于超过几千微秒的延迟,您应该改用 delay() 函数。

delayMicroseconds() 函数语法

delayMicroseconds (us) ;

其中,us 是要暂停的微秒数(无符号整数)

示例

/* Flashing LED
   * ------------
   * Turns on and off a light emitting diode(LED) connected to a digital
   * pin, in intervals of 1 seconds. *
*/

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
   delayMicroseconds(1000); // waits for a second
   digitalWrite(ledPin, LOW); // sets the LED off
   delayMicroseconds(1000); // waits for a second
}
arduino_time.htm
广告