Revert "Merge pull request #283 from neutralinsomniac/fix_hourly_chime_background"

This reverts commit 5c94111ea2, reversing
changes made to bc9b4ce700.
This commit is contained in:
Wesley Aptekar-Cassels
2023-11-13 00:14:41 -05:00
parent b6cdef0689
commit 6f4917a0d5
6 changed files with 47 additions and 28 deletions

View File

@@ -294,25 +294,7 @@ void movement_request_wake() {
}
void movement_play_signal(void) {
bool buzzer_enabled = watch_is_buzzer_or_led_enabled();
if (!buzzer_enabled) {
watch_enable_buzzer();
}
watch_buzzer_play_note(BUZZER_NOTE_C8, 75);
watch_buzzer_play_note(BUZZER_NOTE_REST, 100);
watch_buzzer_play_note(BUZZER_NOTE_C8, 100);
if (!buzzer_enabled) {
watch_disable_buzzer();
}
}
void movement_play_tune(void) {
if (!watch_is_buzzer_or_led_enabled()) {
watch_enable_buzzer();
watch_buzzer_play_sequence(signal_tune, watch_disable_buzzer);
} else {
watch_buzzer_play_sequence(signal_tune, NULL);
}
watch_buzzer_play_sequence(signal_tune, NULL);
}
void movement_play_alarm(void) {