From: joeycastillo Date: Sat, 12 Oct 2024 15:34:06 +0000 (-0400) Subject: beep softer when changing modes (saves energy) X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=2d3412bb09837192d196707b4e304ef449dec091;p=sensor-watch.git beep softer when changing modes (saves energy) --- diff --git a/movement.c b/movement.c index 9d219ae..58e2a98 100644 --- a/movement.c +++ b/movement.c @@ -692,7 +692,7 @@ bool app_loop(void) { if (movement_state.watch_face_changed) { if (movement_state.settings.bit.button_should_sound) { // low note for nonzero case, high note for return to watch_face 0 - watch_buzzer_play_note(movement_state.next_face_idx ? BUZZER_NOTE_C7 : BUZZER_NOTE_C8, 50); + watch_buzzer_play_note_with_volume(movement_state.next_face_idx ? BUZZER_NOTE_C7 : BUZZER_NOTE_C8, 50, WATCH_BUZZER_VOLUME_SOFT); } wf->resign(watch_face_contexts[movement_state.current_face_idx]); movement_state.current_face_idx = movement_state.next_face_idx;