diff options
Diffstat (limited to 'quantum/process_keycode/process_music.h')
-rw-r--r-- | quantum/process_keycode/process_music.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/quantum/process_keycode/process_music.h b/quantum/process_keycode/process_music.h new file mode 100644 index 000000000..318b3e387 --- /dev/null +++ b/quantum/process_keycode/process_music.h | |||
@@ -0,0 +1,27 @@ | |||
1 | #ifndef PROCESS_MUSIC_H | ||
2 | #define PROCESS_MUSIC_H | ||
3 | |||
4 | #include "quantum.h" | ||
5 | |||
6 | bool process_music(uint16_t keycode, keyrecord_t *record); | ||
7 | |||
8 | bool is_music_on(void); | ||
9 | void music_toggle(void); | ||
10 | void music_on(void); | ||
11 | void music_off(void); | ||
12 | |||
13 | void audio_on_user(void); | ||
14 | void music_on_user(void); | ||
15 | void music_scale_user(void); | ||
16 | |||
17 | void matrix_scan_music(void); | ||
18 | |||
19 | #ifndef SCALE | ||
20 | #define SCALE (int8_t []){ 0 + (12*0), 2 + (12*0), 4 + (12*0), 5 + (12*0), 7 + (12*0), 9 + (12*0), 11 + (12*0), \ | ||
21 | 0 + (12*1), 2 + (12*1), 4 + (12*1), 5 + (12*1), 7 + (12*1), 9 + (12*1), 11 + (12*1), \ | ||
22 | 0 + (12*2), 2 + (12*2), 4 + (12*2), 5 + (12*2), 7 + (12*2), 9 + (12*2), 11 + (12*2), \ | ||
23 | 0 + (12*3), 2 + (12*3), 4 + (12*3), 5 + (12*3), 7 + (12*3), 9 + (12*3), 11 + (12*3), \ | ||
24 | 0 + (12*4), 2 + (12*4), 4 + (12*4), 5 + (12*4), 7 + (12*4), 9 + (12*4), 11 + (12*4), } | ||
25 | #endif | ||
26 | |||
27 | #endif \ No newline at end of file | ||