Skip to content

Commit

Permalink
Merge branch 'joeycastillo:main' into french_revolutionary_face
Browse files Browse the repository at this point in the history
  • Loading branch information
CarpeNoctem authored Feb 21, 2024
2 parents 3a1c827 + af18673 commit 099c2ad
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions movement/movement.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
movement_state_t movement_state;
void * watch_face_contexts[MOVEMENT_NUM_FACES];
watch_date_time scheduled_tasks[MOVEMENT_NUM_FACES];
const int32_t movement_le_inactivity_deadlines[8] = {INT_MAX, 3600, 7200, 21600, 43200, 86400, 172800, 604800};
const int32_t movement_le_inactivity_deadlines[8] = {INT_MAX, 600, 3600, 7200, 21600, 43200, 86400, 604800};
const int16_t movement_timeout_inactivity_deadlines[4] = {60, 120, 300, 1800};
movement_event_t event;

Expand Down Expand Up @@ -354,7 +354,7 @@ void app_init(void) {
movement_state.settings.bit.led_red_color = MOVEMENT_DEFAULT_RED_COLOR;
movement_state.settings.bit.led_green_color = MOVEMENT_DEFAULT_GREEN_COLOR;
movement_state.settings.bit.button_should_sound = true;
movement_state.settings.bit.le_interval = 1;
movement_state.settings.bit.le_interval = 2;
movement_state.settings.bit.led_duration = 1;
movement_state.light_ticks = -1;
movement_state.alarm_ticks = -1;
Expand Down
12 changes: 6 additions & 6 deletions movement/watch_faces/settings/preferences_face.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,22 +136,22 @@ bool preferences_face_loop(movement_event_t event, movement_settings_t *settings
watch_display_string(" Never", 4);
break;
case 1:
watch_display_string("1 hour", 4);
watch_display_string("10n&in", 4);
break;
case 2:
watch_display_string("2 hour", 4);
watch_display_string("1 hour", 4);
break;
case 3:
watch_display_string("6 hour", 4);
watch_display_string("2 hour", 4);
break;
case 4:
watch_display_string("12 hr", 4);
watch_display_string("6 hour", 4);
break;
case 5:
watch_display_string(" 1 day", 4);
watch_display_string("12 hr", 4);
break;
case 6:
watch_display_string(" 2 day", 4);
watch_display_string(" 1 day", 4);
break;
case 7:
watch_display_string(" 7 day", 4);
Expand Down

0 comments on commit 099c2ad

Please sign in to comment.