movement: make stopwatch work off-screen + in low energy mode

This commit is contained in:
Joey Castillo 2022-02-06 15:05:28 -05:00
parent aae9160422
commit 275960be83
2 changed files with 116 additions and 28 deletions

View File

@ -1,46 +1,95 @@
/*
* MIT License
*
* Copyright (c) 2022 Wesley Ellis
* Copyright (c) 2022 Joey Castillo
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include "stopwatch_face.h" #include "stopwatch_face.h"
#include "watch.h" #include "watch.h"
#include "watch_utility.h"
void stopwatch_face_setup(movement_settings_t *settings, uint8_t watch_face_index, void ** context_ptr) { void stopwatch_face_setup(movement_settings_t *settings, uint8_t watch_face_index, void ** context_ptr) {
(void) settings; (void) settings;
(void) watch_face_index; (void) watch_face_index;
if (*context_ptr == NULL) *context_ptr = malloc(sizeof(stopwatch_state_t)); if (*context_ptr == NULL) {
*context_ptr = malloc(sizeof(stopwatch_state_t));
memset(*context_ptr, 0, sizeof(stopwatch_state_t));
}
}
static void _stopwatch_face_update_display(stopwatch_state_t *stopwatch_state, bool show_seconds) {
if (stopwatch_state->running) {
watch_date_time now = watch_rtc_get_date_time();
uint32_t now_timestamp = watch_utility_date_time_to_unix_time(now, 0);
uint32_t start_timestamp = watch_utility_date_time_to_unix_time(stopwatch_state->start_time, 0);
stopwatch_state->seconds_counted = now_timestamp - start_timestamp;
}
if (stopwatch_state->seconds_counted >= 3456000) {
// display maxes out just shy of 40 days, thanks to the limit on the day digits (0-39)
stopwatch_state->running = false;
watch_display_string("st39235959", 0);
return;
}
watch_duration_t duration = watch_utility_seconds_to_duration(stopwatch_state->seconds_counted);
char buf[14];
sprintf(buf, "st %02d%02d ", duration.hours, duration.minutes);
watch_display_string(buf, 0);
if (duration.days != 0) {
sprintf(buf, "%2d", (uint8_t)duration.days);
watch_display_string(buf, 2);
}
if (show_seconds) {
sprintf(buf, "%02d", duration.seconds);
watch_display_string(buf, 8);
}
} }
void stopwatch_face_activate(movement_settings_t *settings, void *context) { void stopwatch_face_activate(movement_settings_t *settings, void *context) {
(void) settings; (void) settings;
memset(context, 0, sizeof(stopwatch_state_t)); (void) context;
if (watch_tick_animation_is_running()) watch_stop_tick_animation();
} }
bool stopwatch_face_loop(movement_event_t event, movement_settings_t *settings, void *context) { bool stopwatch_face_loop(movement_event_t event, movement_settings_t *settings, void *context) {
(void) settings; (void) settings;
stopwatch_state_t *stopwatch_state = (stopwatch_state_t *)context; stopwatch_state_t *stopwatch_state = (stopwatch_state_t *)context;
char buf[14];
switch (event.event_type) { switch (event.event_type) {
case EVENT_ACTIVATE: case EVENT_ACTIVATE:
watch_set_colon(); watch_set_colon();
stopwatch_state->running = false; // fall through
watch_display_string("st 00000", 0);
break;
case EVENT_TICK: case EVENT_TICK:
if (stopwatch_state->running) { if (stopwatch_state->start_time.reg == 0) {
stopwatch_state->seconds++; watch_display_string("st 000000", 0);
if (stopwatch_state->seconds == 60) { } else {
stopwatch_state->minutes++; _stopwatch_face_update_display(stopwatch_state, true);
stopwatch_state->seconds = 0;
} }
if (stopwatch_state->minutes == 60) {
stopwatch_state->hours++;
stopwatch_state->minutes = 0;
}
}
sprintf(buf, "st%2d%02d%02d", stopwatch_state->hours, stopwatch_state->minutes, stopwatch_state->seconds);
watch_display_string(buf, 0);
break; break;
case EVENT_MODE_BUTTON_UP: case EVENT_MODE_BUTTON_UP:
movement_move_to_next_face(); movement_move_to_next_face();
@ -48,20 +97,35 @@ bool stopwatch_face_loop(movement_event_t event, movement_settings_t *settings,
case EVENT_LIGHT_BUTTON_DOWN: case EVENT_LIGHT_BUTTON_DOWN:
movement_illuminate_led(); movement_illuminate_led();
if (!stopwatch_state->running) { if (!stopwatch_state->running) {
stopwatch_state->seconds = 0; stopwatch_state->start_time.reg = 0;
stopwatch_state->minutes = 0; stopwatch_state->seconds_counted = 0;
stopwatch_state->hours = 0; watch_display_string("st 000000", 0);
watch_display_string("st 00000", 0);
} }
break; break;
case EVENT_ALARM_BUTTON_DOWN: case EVENT_ALARM_BUTTON_DOWN:
stopwatch_state->running = !stopwatch_state->running; stopwatch_state->running = !stopwatch_state->running;
if (stopwatch_state->running) {
// we're running now, so we need to set the start_time.
if (stopwatch_state->start_time.reg == 0) {
// if starting from the reset state, easy: we start now.
stopwatch_state->start_time = watch_rtc_get_date_time();
} else {
// if resuming with time already on the clock, the original start time isn't valid anymore!
// so let's fetch the current time...
uint32_t timestamp = watch_utility_date_time_to_unix_time(watch_rtc_get_date_time(), 0);
// ...subtract the seconds we've already counted...
timestamp -= stopwatch_state->seconds_counted;
// and resume from the "virtual" start time that's that many seconds ago.
stopwatch_state->start_time = watch_utility_date_time_from_unix_time(timestamp, 0);
}
}
break; break;
case EVENT_TIMEOUT: case EVENT_TIMEOUT:
// explicitly ignore the timeout event so we stay on screen // explicitly ignore the timeout event so we stay on screen
break; break;
case EVENT_LOW_ENERGY_UPDATE: case EVENT_LOW_ENERGY_UPDATE:
stopwatch_state->running = false; if (!watch_tick_animation_is_running()) watch_start_tick_animation(500);
_stopwatch_face_update_display(stopwatch_state, false);
watch_set_indicator(WATCH_INDICATOR_BELL); watch_set_indicator(WATCH_INDICATOR_BELL);
break; break;
default: default:

View File

@ -1,3 +1,28 @@
/*
* MIT License
*
* Copyright (c) 2022 Wesley Ellis
* Copyright (c) 2022 Joey Castillo
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#ifndef STOPWATCH_FACE_H_ #ifndef STOPWATCH_FACE_H_
#define STOPWATCH_FACE_H_ #define STOPWATCH_FACE_H_
@ -5,9 +30,8 @@
typedef struct { typedef struct {
bool running; bool running;
uint8_t seconds; watch_date_time start_time; // while running, show the difference between this time and now
uint8_t minutes; uint32_t seconds_counted; // set this value when paused, and show that instead.
uint8_t hours;
} stopwatch_state_t; } stopwatch_state_t;
void stopwatch_face_setup(movement_settings_t *settings, uint8_t watch_face_index, void ** context_ptr); void stopwatch_face_setup(movement_settings_t *settings, uint8_t watch_face_index, void ** context_ptr);