W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
delay()函數(shù)的工作方式非常簡單。它接受單個整數(shù)(或數(shù)字)參數(shù)。此數(shù)字表示時間(以毫秒為單位)。當程序遇到這個函數(shù)時,應該等到下一行代碼。然而,問題是,delay()函數(shù)并不是讓程序等待的好方法,因為它被稱為阻塞(blocking)函數(shù)。
delay (ms) ;
其中, ms 是以毫秒為單位暫停的時間(無符號長整型)。
/* Flashing LED * ------------ * Turns on and off a light emitting diode(LED) connected to a digital * pin, in intervals of 2 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 delay(1000); // waits for a second digitalWrite(ledPin, LOW); // sets the LED off delay(1000); // waits for a second }
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: