mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-23 08:45:22 +03:00
Update Blink.ino
Typo
This commit is contained in:
committed by
Ivan Grokhotkov
parent
b4368ba870
commit
0291a6e32a
@ -17,7 +17,7 @@ void setup() {
|
|||||||
void loop() {
|
void loop() {
|
||||||
digitalWrite(LED_BUILTIN, LOW); // Turn the LED on (Note that LOW is the voltage level
|
digitalWrite(LED_BUILTIN, LOW); // Turn the LED on (Note that LOW is the voltage level
|
||||||
// but actually the LED is on; this is because
|
// but actually the LED is on; this is because
|
||||||
// it is acive low on the ESP-01)
|
// it is active low on the ESP-01)
|
||||||
delay(1000); // Wait for a second
|
delay(1000); // Wait for a second
|
||||||
digitalWrite(LED_BUILTIN, HIGH); // Turn the LED off by making the voltage HIGH
|
digitalWrite(LED_BUILTIN, HIGH); // Turn the LED off by making the voltage HIGH
|
||||||
delay(2000); // Wait for two seconds (to demonstrate the active low LED)
|
delay(2000); // Wait for two seconds (to demonstrate the active low LED)
|
||||||
|
Reference in New Issue
Block a user