process_audio.h (307B)
1 #pragma once 2 3 #include <stdint.h> 4 #include <stdbool.h> 5 #include "action.h" 6 7 float compute_freq_for_midi_note(uint8_t note); 8 9 bool process_audio(uint16_t keycode, keyrecord_t *record); 10 void process_audio_noteon(uint8_t note); 11 void process_audio_noteoff(uint8_t note); 12 void process_audio_all_notes_off(void);