diff options
| author | Selene ToyKeeper | 2023-05-30 07:59:02 -0600 |
|---|---|---|
| committer | Selene ToyKeeper | 2023-05-30 07:59:02 -0600 |
| commit | d8f8f849076ab9be75451f20dbe52ab3907a1c01 (patch) | |
| tree | 40ce04e2350b480f34854bd1e775acd1c701a353 /spaghetti-monster | |
| parent | changed version check from YYYYMMDDXXXX to XXXX.YYYY-MM-DD, (diff) | |
| download | anduril-d8f8f849076ab9be75451f20dbe52ab3907a1c01.tar.gz anduril-d8f8f849076ab9be75451f20dbe52ab3907a1c01.tar.bz2 anduril-d8f8f849076ab9be75451f20dbe52ab3907a1c01.zip | |
make sure blink_digit(0) uses the same timing as the rest of the UI
(BLINK_ONCE_TIME)
Diffstat (limited to 'spaghetti-monster')
| -rw-r--r-- | spaghetti-monster/fsm-misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spaghetti-monster/fsm-misc.c b/spaghetti-monster/fsm-misc.c index dacca85..0aeb7c3 100644 --- a/spaghetti-monster/fsm-misc.c +++ b/spaghetti-monster/fsm-misc.c @@ -30,7 +30,7 @@ uint8_t blink_digit(uint8_t num) { // "zero" digit gets a single short blink uint8_t ontime = BLINK_SPEED * 2 / 12; - if (!num) { ontime = 8; num ++; } + if (!num) { ontime = BLINK_ONCE_TIME; num ++; } #ifdef BLINK_CHANNEL // channel is set per blink, to prevent issues |
