forked from mirrors/qmk_userspace
Factor basic note processing into respective processors
This commit is contained in:
parent
525be99ee9
commit
1000799d1e
9 changed files with 186 additions and 85 deletions
11
quantum/process_keycode/process_audio.h
Normal file
11
quantum/process_keycode/process_audio.h
Normal file
|
@ -0,0 +1,11 @@
|
|||
#ifndef PROCESS_AUDIO_H
|
||||
#define PROCESS_AUDIO_H
|
||||
|
||||
bool process_audio(uint16_t keycode, keyrecord_t *record);
|
||||
void process_audio_noteon(uint8_t note);
|
||||
void process_audio_noteoff(uint8_t note);
|
||||
void process_audio_stop_all_notes(void);
|
||||
|
||||
void audio_on_user(void);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue