movement: default to "instant" led_duration.

This is a matter of personal preference, but "instant" is the behaviour
of the original watch, and seems like the thing more people would
expect. Feel free not to take this commit if you disagree, though.
This commit is contained in:
Wesley Aptekar-Cassels 2023-09-29 22:13:29 -04:00
parent 30195a2619
commit 4763568900

View File

@ -364,7 +364,7 @@ void app_init(void) {
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.led_duration = 1;
movement_state.settings.bit.led_duration = 0;
movement_state.light_ticks = -1;
movement_state.alarm_ticks = -1;
movement_state.next_available_backup_register = 4;