]> git.earman.xyz Git - sensor-watch.git/commitdiff
Merge PR #458 - add layla tune
authorMatheus Afonso Martins Moreira <matheus@matheusmoreira.com>
Tue, 3 Sep 2024 03:49:20 +0000 (00:49 -0300)
committerMatheus Afonso Martins Moreira <matheus@matheusmoreira.com>
Tue, 3 Sep 2024 03:49:20 +0000 (00:49 -0300)
Awesome lick from Eric Clapton - Layla.

Reviewed-by: Matheus Afonso Martins Moreira <matheus@matheusmoreira.com>
GitHub-Pull-Request: https://github.com/joeycastillo/Sensor-Watch/pull/458

1  2 
movement/movement_custom_signal_tunes.h

index 657285256c0549f6c03f504e79ca66139bfccf1b,20c72352adfc45f145b729650ffa774e8eb5bd61..0ac527ac74862439c3fdd7bdce53212f63d90cee
@@@ -83,21 -84,23 +83,40 @@@ int8_t signal_tune[] = 
  };
  #endif // SIGNAL_TUNE_KIM_POSSIBLE
  
 -    BUZZER_NOTE_C7, 5,  
 +#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_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_