Add auto-repeat feature to Countdown watch face

This commit is contained in:
Joseph Bryant 2024-08-24 12:02:50 +01:00 committed by Matheus Afonso Martins Moreira
parent 80dc8a247f
commit ddaf3a8324
2 changed files with 55 additions and 16 deletions

View File

@ -1,6 +1,7 @@
/* /*
* MIT License * MIT License
* *
* Copyright (c) 2024 Joseph Bryant
* Copyright (c) 2023 Konrad Rieck * Copyright (c) 2023 Konrad Rieck
* Copyright (c) 2022 Wesley Ellis * Copyright (c) 2022 Wesley Ellis
* *
@ -68,17 +69,30 @@ static inline void button_beep(movement_settings_t *settings) {
watch_buzzer_play_note(BUZZER_NOTE_C7, 50); watch_buzzer_play_note(BUZZER_NOTE_C7, 50);
} }
static void start(countdown_state_t *state, movement_settings_t *settings) { static void schedule_countdown(countdown_state_t *state, movement_settings_t *settings) {
watch_date_time now = watch_rtc_get_date_time();
state->mode = cd_running; // Calculate the new state->now_ts but don't update it until we've updated the target -
state->now_ts = watch_utility_date_time_to_unix_time(now, get_tz_offset(settings)); // avoid possible race where the old target is compared to the new time and immediately triggers
state->target_ts = watch_utility_offset_timestamp(state->now_ts, state->hours, state->minutes, state->seconds); uint32_t new_now = watch_utility_date_time_to_unix_time(watch_rtc_get_date_time(), get_tz_offset(settings));
state->target_ts = watch_utility_offset_timestamp(new_now, state->hours, state->minutes, state->seconds);
state->now_ts = new_now;
watch_date_time target_dt = watch_utility_date_time_from_unix_time(state->target_ts, get_tz_offset(settings)); watch_date_time target_dt = watch_utility_date_time_from_unix_time(state->target_ts, get_tz_offset(settings));
movement_schedule_background_task(target_dt); movement_schedule_background_task_for_face(state->watch_face_index, target_dt);
watch_set_indicator(WATCH_INDICATOR_BELL);
} }
static void auto_repeat(countdown_state_t *state, movement_settings_t *settings) {
movement_play_alarm();
load_countdown(state);
schedule_countdown(state, settings);
}
static void start(countdown_state_t *state, movement_settings_t *settings) {
state->mode = cd_running;
schedule_countdown(state, settings);
}
static void draw(countdown_state_t *state, uint8_t subsecond) { static void draw(countdown_state_t *state, uint8_t subsecond) {
char buf[16]; char buf[16];
@ -100,7 +114,7 @@ static void draw(countdown_state_t *state, uint8_t subsecond) {
break; break;
case cd_reset: case cd_reset:
case cd_paused: case cd_paused:
watch_clear_indicator(WATCH_INDICATOR_BELL); watch_clear_indicator(WATCH_INDICATOR_SIGNAL);
sprintf(buf, "CD %2d%02d%02d", state->hours, state->minutes, state->seconds); sprintf(buf, "CD %2d%02d%02d", state->hours, state->minutes, state->seconds);
break; break;
case cd_setting: case cd_setting:
@ -127,13 +141,13 @@ static void draw(countdown_state_t *state, uint8_t subsecond) {
static void pause(countdown_state_t *state) { static void pause(countdown_state_t *state) {
state->mode = cd_paused; state->mode = cd_paused;
movement_cancel_background_task(); movement_cancel_background_task_for_face(state->watch_face_index);
watch_clear_indicator(WATCH_INDICATOR_BELL); watch_clear_indicator(WATCH_INDICATOR_SIGNAL);
} }
static void reset(countdown_state_t *state) { static void reset(countdown_state_t *state) {
state->mode = cd_reset; state->mode = cd_reset;
movement_cancel_background_task(); movement_cancel_background_task_for_face(state->watch_face_index);
load_countdown(state); load_countdown(state);
} }
@ -142,6 +156,15 @@ static void ring(countdown_state_t *state) {
reset(state); reset(state);
} }
static void times_up(movement_settings_t *settings, countdown_state_t *state) {
if(state->repeat) {
auto_repeat(state, settings);
}
else {
ring(state);
}
}
static void settings_increment(countdown_state_t *state) { static void settings_increment(countdown_state_t *state) {
switch(state->selection) { switch(state->selection) {
case 0: case 0:
@ -170,6 +193,7 @@ void countdown_face_setup(movement_settings_t *settings, uint8_t watch_face_inde
memset(*context_ptr, 0, sizeof(countdown_state_t)); memset(*context_ptr, 0, sizeof(countdown_state_t));
state->minutes = DEFAULT_MINUTES; state->minutes = DEFAULT_MINUTES;
state->mode = cd_reset; state->mode = cd_reset;
state->watch_face_index = watch_face_index;
store_countdown(state); store_countdown(state);
} }
} }
@ -180,9 +204,11 @@ void countdown_face_activate(movement_settings_t *settings, void *context) {
if(state->mode == cd_running) { if(state->mode == cd_running) {
watch_date_time now = watch_rtc_get_date_time(); watch_date_time now = watch_rtc_get_date_time();
state->now_ts = watch_utility_date_time_to_unix_time(now, get_tz_offset(settings)); state->now_ts = watch_utility_date_time_to_unix_time(now, get_tz_offset(settings));
watch_set_indicator(WATCH_INDICATOR_BELL); watch_set_indicator(WATCH_INDICATOR_SIGNAL);
} }
watch_set_colon(); watch_set_colon();
if(state->repeat)
watch_set_indicator(WATCH_INDICATOR_BELL);
movement_request_tick_frequency(1); movement_request_tick_frequency(1);
quick_ticks_running = false; quick_ticks_running = false;
@ -252,6 +278,7 @@ bool countdown_face_loop(movement_event_t event, movement_settings_t *settings,
// Only start the timer if we have a valid time. // Only start the timer if we have a valid time.
start(state, settings); start(state, settings);
button_beep(settings); button_beep(settings);
watch_set_indicator(WATCH_INDICATOR_SIGNAL);
} }
break; break;
case cd_setting: case cd_setting:
@ -261,9 +288,19 @@ bool countdown_face_loop(movement_event_t event, movement_settings_t *settings,
draw(state, event.subsecond); draw(state, event.subsecond);
break; break;
case EVENT_ALARM_LONG_PRESS: case EVENT_ALARM_LONG_PRESS:
if (state->mode == cd_setting) { switch(state->mode) {
quick_ticks_running = true; case cd_setting:
movement_request_tick_frequency(8); quick_ticks_running = true;
movement_request_tick_frequency(8);
break;
default:
// Toggle auto-repeat
button_beep(settings);
state->repeat = !state->repeat;
if(state->repeat)
watch_set_indicator(WATCH_INDICATOR_BELL);
else
watch_clear_indicator(WATCH_INDICATOR_BELL);
} }
break; break;
case EVENT_LIGHT_LONG_PRESS: case EVENT_LIGHT_LONG_PRESS:
@ -285,7 +322,7 @@ bool countdown_face_loop(movement_event_t event, movement_settings_t *settings,
abort_quick_ticks(state); abort_quick_ticks(state);
break; break;
case EVENT_BACKGROUND_TASK: case EVENT_BACKGROUND_TASK:
ring(state); times_up(settings, state);
break; break;
case EVENT_TIMEOUT: case EVENT_TIMEOUT:
abort_quick_ticks(state); abort_quick_ticks(state);

View File

@ -62,6 +62,8 @@ typedef struct {
uint8_t set_seconds; uint8_t set_seconds;
uint8_t selection; uint8_t selection;
countdown_mode_t mode; countdown_mode_t mode;
bool repeat;
uint8_t watch_face_index;
} countdown_state_t; } countdown_state_t;