Commit 3b20982c authored by Eric Duminil's avatar Eric Duminil
Browse files

Different conventions for LEDs

parent 1722ca32
...@@ -43,11 +43,20 @@ namespace LedEffects { ...@@ -43,11 +43,20 @@ namespace LedEffects {
} }
void onBoardLEDOff() { void onBoardLEDOff() {
//NOTE: OFF is LOW on ESP32 and HIGH on ESP8266 :-/
#ifdef ESP8266
digitalWrite(ONBOARD_LED_PIN, HIGH); digitalWrite(ONBOARD_LED_PIN, HIGH);
#else
digitalWrite(ONBOARD_LED_PIN, LOW);
#endif
} }
void onBoardLEDOn() { void onBoardLEDOn() {
#ifdef ESP8266
digitalWrite(ONBOARD_LED_PIN, LOW); digitalWrite(ONBOARD_LED_PIN, LOW);
#else
digitalWrite(ONBOARD_LED_PIN, HIGH);
#endif
} }
void LEDsOff() { void LEDsOff() {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment