From 0291a6e32a902707bef1d5b1167de40cdf0b4212 Mon Sep 17 00:00:00 2001 From: Jose M Viloria Date: Mon, 12 Dec 2016 01:57:00 -0400 Subject: [PATCH] Update Blink.ino Typo --- libraries/esp8266/examples/Blink/Blink.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/esp8266/examples/Blink/Blink.ino b/libraries/esp8266/examples/Blink/Blink.ino index 6391632a5..e6c54fe93 100644 --- a/libraries/esp8266/examples/Blink/Blink.ino +++ b/libraries/esp8266/examples/Blink/Blink.ino @@ -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)