diff options
| author | Christian Schubert | 2026-04-02 21:52:11 +0200 |
|---|---|---|
| committer | Christian Schubert | 2026-04-02 21:52:11 +0200 |
| commit | 4a9c11e254a86417edb63336edd0c011a39863d9 (patch) | |
| tree | 3850dd3f2c22fc5dbea8f31bb6f6585b321acde3 /ui/simple | |
| parent | idle_mode() (diff) | |
| download | anduril-4a9c11e254a86417edb63336edd0c011a39863d9.tar.gz anduril-4a9c11e254a86417edb63336edd0c011a39863d9.tar.bz2 anduril-4a9c11e254a86417edb63336edd0c011a39863d9.zip | |
reduce CEIL, still plenty bright
Diffstat (limited to 'ui/simple')
| -rw-r--r-- | ui/simple/simple.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/simple/simple.c b/ui/simple/simple.c index 31d1a6c..2367fa6 100644 --- a/ui/simple/simple.c +++ b/ui/simple/simple.c @@ -35,7 +35,7 @@ #endif #define NUM_LEVELS 4 -#define CEIL SIMPLE_UI_CEIL +#define CEIL 100 static const uint8_t brightness_levels[NUM_LEVELS] = { 1, @@ -53,7 +53,7 @@ uint8_t on_state(Event event, uint16_t arg); uint8_t current_level_idx = 0; uint8_t current_level = 0; -uint8_t thermal_limit = SIMPLE_UI_CEIL; +uint8_t thermal_limit = CEIL; static const uint8_t voltage_levels[] = { 0, 0, // black |
