diff options
author | Joey Castillo <joeycastillo@utexas.edu> | 2022-04-06 15:53:32 -0400 |
---|---|---|
committer | Joey Castillo <joeycastillo@utexas.edu> | 2022-04-06 15:53:32 -0400 |
commit | 8bcd5dfef62665af09b6d256a5d2a6de8a083ca0 (patch) | |
tree | 540806737948c76f9dd182798b53e427428e3da8 /movement | |
parent | 8b0ebab65bcc82d45201bdef4b9c4e145b54b7d7 (diff) | |
parent | 5f0ebd8c66b3512d67efc8174c5f65a86488a4ea (diff) | |
download | Sensor-Watch-8bcd5dfef62665af09b6d256a5d2a6de8a083ca0.tar.gz Sensor-Watch-8bcd5dfef62665af09b6d256a5d2a6de8a083ca0.tar.bz2 Sensor-Watch-8bcd5dfef62665af09b6d256a5d2a6de8a083ca0.zip |
Merge branch 'main' of github.com:joeycastillo/Sensor-Watch into mars-clock
Diffstat (limited to 'movement')
-rw-r--r-- | movement/watch_faces/complication/pulsometer_face.c | 2 | ||||
-rw-r--r-- | movement/watch_faces/complication/sunrise_sunset_face.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/movement/watch_faces/complication/pulsometer_face.c b/movement/watch_faces/complication/pulsometer_face.c index 28ca1a50..1d6f2086 100644 --- a/movement/watch_faces/complication/pulsometer_face.c +++ b/movement/watch_faces/complication/pulsometer_face.c @@ -73,7 +73,7 @@ bool pulsometer_face_loop(movement_event_t event, movement_settings_t *settings, watch_display_string(" Alarn", 4); break; case 2: - watch_display_string("+ Count ", 0); + watch_display_string("* Count ", 0); break; case 3: watch_display_string(" 30Beats ", 0); diff --git a/movement/watch_faces/complication/sunrise_sunset_face.c b/movement/watch_faces/complication/sunrise_sunset_face.c index fef9b4df..8dea812e 100644 --- a/movement/watch_faces/complication/sunrise_sunset_face.c +++ b/movement/watch_faces/complication/sunrise_sunset_face.c @@ -188,10 +188,10 @@ static void _sunrise_sunset_face_update_settings_display(movement_event_t event, switch (state->page) { case 1: - sprintf(buf, "LA %c %04d", state->working_latitude.sign ? '-' : 'F', abs(_sunrise_sunset_face_latlon_from_struct(state->working_latitude))); // F looks sorta like a plus sign in position 1 + sprintf(buf, "LA %c %04d", state->working_latitude.sign ? '-' : '+', abs(_sunrise_sunset_face_latlon_from_struct(state->working_latitude))); break; case 2: - sprintf(buf, "LO %c%05d", state->working_longitude.sign ? '-' : 'F', abs(_sunrise_sunset_face_latlon_from_struct(state->working_longitude))); + sprintf(buf, "LO %c%05d", state->working_longitude.sign ? '-' : '+', abs(_sunrise_sunset_face_latlon_from_struct(state->working_longitude))); break; } if (event.subsecond % 2) { |