Add "BLMIN TMP OFF" function for programmable buttons

This commit is contained in:
wrobepio
2023-11-06 15:51:40 +01:00
committed by Krzysiek Egzmont
parent b1d3a95ca2
commit 23986a8648
9 changed files with 63 additions and 3 deletions

View File

@@ -23,6 +23,14 @@
extern uint16_t gBacklightCountdown;
extern uint8_t gBacklightBrightness;
#ifdef ENABLE_BLMIN_TMP_OFF
typedef enum {
BLMIN_STAT_ON,
BLMIN_STAT_OFF,
BLMIN_STAT_UNKNOWN
} BLMIN_STAT_t;
#endif
void BACKLIGHT_InitHardware();
void BACKLIGHT_TurnOn();
void BACKLIGHT_TurnOff();