1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-30 16:24:09 +03:00

changed BUILTIN_LED to LED_BUILTIN

This commit is contained in:
Alex
2016-02-02 15:59:34 +01:00
parent 8645bd598e
commit 5e11c4379c

View File

@ -16,7 +16,7 @@ unsigned long previousMillis = 0;
const long interval = 1000;
void setup() {
pinMode(BUILTIN_LED, OUTPUT);
pinMode(LED_BUILTIN, OUTPUT);
}
void loop()