aboutsummaryrefslogtreecommitdiff
path: root/spaghetti-monster
diff options
context:
space:
mode:
Diffstat (limited to 'spaghetti-monster')
-rw-r--r--spaghetti-monster/anduril/lockout-mode.c2
-rw-r--r--spaghetti-monster/anduril/ramp-mode.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/spaghetti-monster/anduril/lockout-mode.c b/spaghetti-monster/anduril/lockout-mode.c
index 943114d..9414a67 100644
--- a/spaghetti-monster/anduril/lockout-mode.c
+++ b/spaghetti-monster/anduril/lockout-mode.c
@@ -124,7 +124,7 @@ uint8_t lockout_state(Event event, uint16_t arg) {
if (0 == arg) {
autolock_time = 0;
save_config();
- blip();
+ blink_once();
}
return MISCHIEF_MANAGED;
}
diff --git a/spaghetti-monster/anduril/ramp-mode.c b/spaghetti-monster/anduril/ramp-mode.c
index 7ca63cf..6c4b14e 100644
--- a/spaghetti-monster/anduril/ramp-mode.c
+++ b/spaghetti-monster/anduril/ramp-mode.c
@@ -337,14 +337,14 @@ uint8_t steady_state(Event event, uint16_t arg) {
else if (event == EV_5clicks) {
manual_memory = actual_level;
save_config();
- blip();
+ blink_once();
return MISCHIEF_MANAGED;
}
else if (event == EV_click5_hold) {
if (0 == arg) {
manual_memory = 0;
save_config();
- blip();
+ blink_once();
}
return MISCHIEF_MANAGED;
}