1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-21 21:22:31 +03:00

Update Blink.ino

Typo
This commit is contained in:
Jose M Viloria
2016-12-12 01:57:00 -04:00
committed by Ivan Grokhotkov
parent b4368ba870
commit 0291a6e32a

View File

@ -17,7 +17,7 @@ void setup() {
void loop() {
digitalWrite(LED_BUILTIN, LOW); // Turn the LED on (Note that LOW is the voltage level
// 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
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)