From: Matheus Afonso Martins Moreira Date: Tue, 3 Sep 2024 03:49:20 +0000 (-0300) Subject: Merge PR #458 - add layla tune X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=a67076f;p=sensor-watch.git Merge PR #458 - add layla tune Awesome lick from Eric Clapton - Layla. Reviewed-by: Matheus Afonso Martins Moreira GitHub-Pull-Request: https://github.com/joeycastillo/Sensor-Watch/pull/458 --- a67076f43775dadd48db447a88e25b23989f3255 diff --cc movement/movement_custom_signal_tunes.h index 6572852,20c7235..0ac527a --- a/movement/movement_custom_signal_tunes.h +++ b/movement/movement_custom_signal_tunes.h @@@ -83,21 -84,23 +83,40 @@@ int8_t signal_tune[] = }; #endif // SIGNAL_TUNE_KIM_POSSIBLE +#ifdef SIGNAL_TUNE_POWER_RANGERS +int8_t signal_tune[] = { + BUZZER_NOTE_D8, 6, + BUZZER_NOTE_REST, 8, + BUZZER_NOTE_D8, 6, + BUZZER_NOTE_REST, 8, + BUZZER_NOTE_C8, 6, + BUZZER_NOTE_REST, 2, + BUZZER_NOTE_D8, 6, + BUZZER_NOTE_REST, 8, + BUZZER_NOTE_F8, 6, + BUZZER_NOTE_REST, 8, + BUZZER_NOTE_D8, 6, + 0 +}; +#endif // SIGNAL_TUNE_POWER_RANGERS + + #ifdef SIGNAL_TUNE_LAYLA + int8_t signal_tune[] = { + BUZZER_NOTE_A6, 5, + BUZZER_NOTE_REST, 1, - BUZZER_NOTE_C7, 5, ++ BUZZER_NOTE_C7, 5, + BUZZER_NOTE_REST, 1, + BUZZER_NOTE_D7, 5, + BUZZER_NOTE_REST, 1, + BUZZER_NOTE_F7, 5, + BUZZER_NOTE_REST, 1, + BUZZER_NOTE_D7, 5, + BUZZER_NOTE_REST, 1, + BUZZER_NOTE_C7, 5, + BUZZER_NOTE_REST, 1, + BUZZER_NOTE_D7, 20, + 0 + }; + #endif // SIGNAL_TUNE_LAYLA + #endif // MOVEMENT_CUSTOM_SIGNAL_TUNES_H_