forked from mirrors/qmk_firmware
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)
This commit is contained in:
parent
7470317d95
commit
8dd1dab7cb
1 changed files with 33 additions and 1 deletions
|
@ -501,5 +501,37 @@
|
||||||
H__NOTE(_F4), \
|
H__NOTE(_F4), \
|
||||||
H__NOTE(_F4), \
|
H__NOTE(_F4), \
|
||||||
W__NOTE(_C5), \
|
W__NOTE(_C5), \
|
||||||
W__NOTE(_BF4),
|
W__NOTE(_BF4),
|
||||||
|
|
||||||
|
/* Prelude music from Final Fantasy */
|
||||||
|
#define FF_PRELUDE \
|
||||||
|
M__NOTE(_C3, 20), M__NOTE(_D3, 20), M__NOTE(_E3, 20), M__NOTE(_G3, 20), \
|
||||||
|
M__NOTE(_C4, 20), M__NOTE(_D4, 20), M__NOTE(_E4, 20), M__NOTE(_G4, 20), \
|
||||||
|
M__NOTE(_C5, 20), M__NOTE(_D5, 20), M__NOTE(_E5, 20), M__NOTE(_G5, 20), \
|
||||||
|
M__NOTE(_C6, 20), M__NOTE(_D6, 20), M__NOTE(_E6, 20), M__NOTE(_G6, 20), \
|
||||||
|
M__NOTE(_C7, 20), M__NOTE(_G6, 20), M__NOTE(_E6, 20), M__NOTE(_D6, 20), \
|
||||||
|
M__NOTE(_C6, 20), M__NOTE(_G5, 20), M__NOTE(_E5, 20), M__NOTE(_D5, 20), \
|
||||||
|
M__NOTE(_C5, 20), M__NOTE(_G4, 20), M__NOTE(_E4, 20), M__NOTE(_D4, 20), \
|
||||||
|
M__NOTE(_C4, 20), M__NOTE(_G3, 20), M__NOTE(_E3, 20), M__NOTE(_D3, 20), \
|
||||||
|
M__NOTE(_A2, 20), M__NOTE(_B2, 20), M__NOTE(_C3, 20), M__NOTE(_E3, 20), \
|
||||||
|
M__NOTE(_A3, 20), M__NOTE(_B3, 20), M__NOTE(_C4, 20), M__NOTE(_E4, 20), \
|
||||||
|
M__NOTE(_A4, 20), M__NOTE(_B4, 20), M__NOTE(_C5, 20), M__NOTE(_E5, 20), \
|
||||||
|
M__NOTE(_A5, 20), M__NOTE(_B5, 20), M__NOTE(_C6, 20), M__NOTE(_E6, 20), \
|
||||||
|
M__NOTE(_A6, 20), M__NOTE(_E6, 20), M__NOTE(_C6, 20), M__NOTE(_B5, 20), \
|
||||||
|
M__NOTE(_A5, 20), M__NOTE(_E5, 20), M__NOTE(_C5, 20), M__NOTE(_B4, 20), \
|
||||||
|
M__NOTE(_A4, 20), M__NOTE(_E4, 20), M__NOTE(_C4, 20), M__NOTE(_B3, 20), \
|
||||||
|
M__NOTE(_A3, 20), M__NOTE(_E3, 20), M__NOTE(_C3, 20), M__NOTE(_B2, 20),
|
||||||
|
|
||||||
|
/* Melody from the main themes of Star Trek TNG and the original series */
|
||||||
|
#define TO_BOLDLY_GO \
|
||||||
|
W__NOTE(_BF3 ), \
|
||||||
|
Q__NOTE(_EF4 ), \
|
||||||
|
WD_NOTE(_AF4 ), \
|
||||||
|
W__NOTE(_REST), \
|
||||||
|
H__NOTE(_G4 ), \
|
||||||
|
Q__NOTE(_EF4 ), \
|
||||||
|
H__NOTE(_C4 ), \
|
||||||
|
W__NOTE(_REST), \
|
||||||
|
QD_NOTE(_F4 ), \
|
||||||
|
M__NOTE(_BF4, 128),
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue