aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--spaghetti-monster/anduril/sunset-timer.c2
-rw-r--r--spaghetti-monster/anduril/sunset-timer.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/spaghetti-monster/anduril/sunset-timer.c b/spaghetti-monster/anduril/sunset-timer.c
index 5a2ba18..635e0ce 100644
--- a/spaghetti-monster/anduril/sunset-timer.c
+++ b/spaghetti-monster/anduril/sunset-timer.c
@@ -43,7 +43,7 @@ uint8_t sunset_timer_state(Event event, uint16_t arg) {
sunset_timer_peak = 3;
}
}
- // 4H: add 10m to timer, per second, until released
+ // 4H: add 5m to timer, per second, until released
else if (event == EV_click4_hold) {
if (0 == (arg % TICKS_PER_SECOND)) {
if (sunset_timer < (255 - SUNSET_TIMER_UNIT)) {
diff --git a/spaghetti-monster/anduril/sunset-timer.h b/spaghetti-monster/anduril/sunset-timer.h
index d197f0e..8f7840c 100644
--- a/spaghetti-monster/anduril/sunset-timer.h
+++ b/spaghetti-monster/anduril/sunset-timer.h
@@ -21,7 +21,7 @@
#define SUNSET_TIMER_H
// how many minutes to add each time the user "bumps" the timer?
-#define SUNSET_TIMER_UNIT 10
+#define SUNSET_TIMER_UNIT 5
#define TICKS_PER_MINUTE (TICKS_PER_SECOND*60)