logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

process_audio.h (307B)


  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);