diff options
| author | Selene ToyKeeper | 2023-04-14 18:43:09 -0600 |
|---|---|---|
| committer | Selene ToyKeeper | 2023-04-14 18:43:09 -0600 |
| commit | 04ae99c89c7032db1c7cda524c27bf14d929d336 (patch) | |
| tree | c1ec04699757eb56d797ca0735dfa9e09712c901 /spaghetti-monster | |
| parent | LT1S Pro: added dynamic PWM (much better low modes!) (diff) | |
| download | anduril-04ae99c89c7032db1c7cda524c27bf14d929d336.tar.gz anduril-04ae99c89c7032db1c7cda524c27bf14d929d336.tar.bz2 anduril-04ae99c89c7032db1c7cda524c27bf14d929d336.zip | |
LT1S Pro: after measuring, perhaps low aux mode is better after all
Diffstat (limited to 'spaghetti-monster')
| -rw-r--r-- | spaghetti-monster/anduril/cfg-sofirn-lt1s-pro.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/spaghetti-monster/anduril/cfg-sofirn-lt1s-pro.h b/spaghetti-monster/anduril/cfg-sofirn-lt1s-pro.h index c9e786d..fb412a6 100644 --- a/spaghetti-monster/anduril/cfg-sofirn-lt1s-pro.h +++ b/spaghetti-monster/anduril/cfg-sofirn-lt1s-pro.h @@ -4,9 +4,17 @@ #include "hwdef-Sofirn_LT1S-Pro.h" // ATTINY: 1616 -// off mode: high (2) +// off mode: low (1) // lockout: blinking (3) -#define INDICATOR_LED_DEFAULT_MODE ((3<<2) + 2) +// Standby power usage: +// - aux high: 6.9 mA (30 days) +// - aux low: 0.16 mA (3.5 years) +// - red moon: 2.17 mA (96 days) +// - white moon: 1.47 mA (141 days) +// Low mode isn't bright enough to be useful on this light, +// but at least it doesn't drain the battery 3X faster than moon mode. +// (it seriously would be more practical to just use moon instead) +#define INDICATOR_LED_DEFAULT_MODE ((3<<2) + 1) // how much to increase total brightness at middle tint // (0 = 100% brightness, 64 = 200% brightness) |
