Merge pull request #1162 from recrof/led_state_fix

add default LED_STATE_ON for boards that don't have it defined
This commit is contained in:
ripplebiz
2025-11-30 21:09:01 +11:00
committed by GitHub

View File

@@ -8,6 +8,10 @@
#include <Arduino.h> #include <Arduino.h>
#include <helpers/sensors/LPPDataHelpers.h> #include <helpers/sensors/LPPDataHelpers.h>
#ifndef LED_STATE_ON
#define LED_STATE_ON 1
#endif
#ifdef PIN_BUZZER #ifdef PIN_BUZZER
#include <helpers/ui/buzzer.h> #include <helpers/ui/buzzer.h>
#endif #endif
@@ -50,7 +54,7 @@ class UITask : public AbstractUITask {
UIScreen* curr; UIScreen* curr;
void userLedHandler(); void userLedHandler();
// Button action handlers // Button action handlers
char checkDisplayOn(char c); char checkDisplayOn(char c);
char handleLongPress(char c); char handleLongPress(char c);