diff options
| author | avatak <35812371+avatak@users.noreply.github.com> | 2019-02-28 20:35:42 +0000 |
|---|---|---|
| committer | Drashna Jaelre <drashna@live.com> | 2019-02-28 12:35:42 -0800 |
| commit | 8dd1dab7cbeb5e149f71b63637574e8408475015 (patch) | |
| tree | a32b7da0d18c17c79618906b07016398a36e9d6b /quantum/audio | |
| parent | 7470317d95574487a7dd42f94421d5a954eb924c (diff) | |
| download | qmk_firmware-8dd1dab7cbeb5e149f71b63637574e8408475015.tar.gz qmk_firmware-8dd1dab7cbeb5e149f71b63637574e8408475015.zip | |
Added two songs to song_list.h (FF Prelude and To Boldly Go) (#5252)
Adds FF_Prelude (from most Final Fantasy games) and TO_BOLDLY_GO (a melody from the main themes of Star Trek TNG and the original series)
Diffstat (limited to 'quantum/audio')
| -rw-r--r-- | quantum/audio/song_list.h | 34 |
1 files changed, 33 insertions, 1 deletions
diff --git a/quantum/audio/song_list.h b/quantum/audio/song_list.h index 994608497..126c0e594 100644 --- a/quantum/audio/song_list.h +++ b/quantum/audio/song_list.h | |||
| @@ -501,5 +501,37 @@ | |||
| 501 | H__NOTE(_F4), \ | 501 | H__NOTE(_F4), \ |
| 502 | H__NOTE(_F4), \ | 502 | H__NOTE(_F4), \ |
| 503 | W__NOTE(_C5), \ | 503 | W__NOTE(_C5), \ |
| 504 | W__NOTE(_BF4), | 504 | W__NOTE(_BF4), |
| 505 | |||
| 506 | /* Prelude music from Final Fantasy */ | ||
| 507 | #define FF_PRELUDE \ | ||
| 508 | M__NOTE(_C3, 20), M__NOTE(_D3, 20), M__NOTE(_E3, 20), M__NOTE(_G3, 20), \ | ||
| 509 | M__NOTE(_C4, 20), M__NOTE(_D4, 20), M__NOTE(_E4, 20), M__NOTE(_G4, 20), \ | ||
| 510 | M__NOTE(_C5, 20), M__NOTE(_D5, 20), M__NOTE(_E5, 20), M__NOTE(_G5, 20), \ | ||
| 511 | M__NOTE(_C6, 20), M__NOTE(_D6, 20), M__NOTE(_E6, 20), M__NOTE(_G6, 20), \ | ||
| 512 | M__NOTE(_C7, 20), M__NOTE(_G6, 20), M__NOTE(_E6, 20), M__NOTE(_D6, 20), \ | ||
| 513 | M__NOTE(_C6, 20), M__NOTE(_G5, 20), M__NOTE(_E5, 20), M__NOTE(_D5, 20), \ | ||
| 514 | M__NOTE(_C5, 20), M__NOTE(_G4, 20), M__NOTE(_E4, 20), M__NOTE(_D4, 20), \ | ||
| 515 | M__NOTE(_C4, 20), M__NOTE(_G3, 20), M__NOTE(_E3, 20), M__NOTE(_D3, 20), \ | ||
| 516 | M__NOTE(_A2, 20), M__NOTE(_B2, 20), M__NOTE(_C3, 20), M__NOTE(_E3, 20), \ | ||
| 517 | M__NOTE(_A3, 20), M__NOTE(_B3, 20), M__NOTE(_C4, 20), M__NOTE(_E4, 20), \ | ||
| 518 | M__NOTE(_A4, 20), M__NOTE(_B4, 20), M__NOTE(_C5, 20), M__NOTE(_E5, 20), \ | ||
| 519 | M__NOTE(_A5, 20), M__NOTE(_B5, 20), M__NOTE(_C6, 20), M__NOTE(_E6, 20), \ | ||
| 520 | M__NOTE(_A6, 20), M__NOTE(_E6, 20), M__NOTE(_C6, 20), M__NOTE(_B5, 20), \ | ||
| 521 | M__NOTE(_A5, 20), M__NOTE(_E5, 20), M__NOTE(_C5, 20), M__NOTE(_B4, 20), \ | ||
| 522 | M__NOTE(_A4, 20), M__NOTE(_E4, 20), M__NOTE(_C4, 20), M__NOTE(_B3, 20), \ | ||
| 523 | M__NOTE(_A3, 20), M__NOTE(_E3, 20), M__NOTE(_C3, 20), M__NOTE(_B2, 20), | ||
| 524 | |||
| 525 | /* Melody from the main themes of Star Trek TNG and the original series */ | ||
| 526 | #define TO_BOLDLY_GO \ | ||
| 527 | W__NOTE(_BF3 ), \ | ||
| 528 | Q__NOTE(_EF4 ), \ | ||
| 529 | WD_NOTE(_AF4 ), \ | ||
| 530 | W__NOTE(_REST), \ | ||
| 531 | H__NOTE(_G4 ), \ | ||
| 532 | Q__NOTE(_EF4 ), \ | ||
| 533 | H__NOTE(_C4 ), \ | ||
| 534 | W__NOTE(_REST), \ | ||
| 535 | QD_NOTE(_F4 ), \ | ||
| 536 | M__NOTE(_BF4, 128), | ||
| 505 | #endif | 537 | #endif |
