From 7008a279df11a8b93d2447a795dc17fe24950147 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 2 Feb 2016 16:00:21 +0100 Subject: [PATCH] changed BUILTIN_LED to LED_BUILTIN --- .../esp8266/examples/BlinkWithoutDelay/BlinkWithoutDelay.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/esp8266/examples/BlinkWithoutDelay/BlinkWithoutDelay.ino b/libraries/esp8266/examples/BlinkWithoutDelay/BlinkWithoutDelay.ino index 1e27fe1dc..ccff3fd74 100644 --- a/libraries/esp8266/examples/BlinkWithoutDelay/BlinkWithoutDelay.ino +++ b/libraries/esp8266/examples/BlinkWithoutDelay/BlinkWithoutDelay.ino @@ -28,6 +28,6 @@ void loop() ledState = HIGH; // Note that this switches the LED *off* else ledState = LOW; // Note that this switches the LED *on* - digitalWrite(BUILTIN_LED, ledState); + digitalWrite(LED_BUILTIN, ledState); } }