From 5e11c4379c02ee1e13eb1afb30622071b4289f24 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 2 Feb 2016 15:59:34 +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 740211d6d..64609a2d0 100644 --- a/libraries/esp8266/examples/BlinkWithoutDelay/BlinkWithoutDelay.ino +++ b/libraries/esp8266/examples/BlinkWithoutDelay/BlinkWithoutDelay.ino @@ -16,7 +16,7 @@ unsigned long previousMillis = 0; const long interval = 1000; void setup() { - pinMode(BUILTIN_LED, OUTPUT); + pinMode(LED_BUILTIN, OUTPUT); } void loop()