1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-15 00:02:49 +03:00

changed BUILTIN_LED to LED_BUILTIN

This commit is contained in:
Alex
2016-02-02 16:00:21 +01:00
parent cf3f6da0f2
commit 7008a279df

View File

@ -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);
}
}