diff options
| author | Selene ToyKeeper | 2017-08-31 23:45:36 -0600 |
|---|---|---|
| committer | Selene ToyKeeper | 2017-08-31 23:45:36 -0600 |
| commit | 0a801bff0f22be650aed6c3724c41cae03814d8f (patch) | |
| tree | c86f8dd31aa52d77fc79515aec107b2cad5943a8 /spaghetti-monster/fsm-adc.c | |
| parent | Reorganized FSM files, one dir per UI. (diff) | |
| download | anduril-0a801bff0f22be650aed6c3724c41cae03814d8f.tar.gz anduril-0a801bff0f22be650aed6c3724c41cae03814d8f.tar.bz2 anduril-0a801bff0f22be650aed6c3724c41cae03814d8f.zip | |
Started a Meteor M43 clone UI.
So far, UI1 and battcheck both work. UI2 and UI3 and other blinkies aren't implement yet.
Added 6-bar battcheck style to match Meteor (ish).
Increased maximum number of clicks to 12, because WTF. If your UI needs 12 clicks, what are you even doing in life?
Diffstat (limited to 'spaghetti-monster/fsm-adc.c')
| -rw-r--r-- | spaghetti-monster/fsm-adc.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/spaghetti-monster/fsm-adc.c b/spaghetti-monster/fsm-adc.c index 541f9a4..7f26fde 100644 --- a/spaghetti-monster/fsm-adc.c +++ b/spaghetti-monster/fsm-adc.c @@ -269,6 +269,11 @@ PROGMEM const uint8_t voltage_blinks[] = { 30, 35, 38, 40, 42, 99, }; #endif +#ifdef BATTCHECK_6bars +PROGMEM const uint8_t voltage_blinks[] = { + 30, 34, 36, 38, 40, 41, 43, 99, +}; +#endif #ifdef BATTCHECK_8bars PROGMEM const uint8_t voltage_blinks[] = { 30, 33, 35, 37, 38, 39, 40, 41, 42, 99, |
