process_audio.h 307 B

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