2020-12-25 20:53:12 -08:00
|
|
|
#pragma once
|
2017-02-25 19:25:33 -08:00
|
|
|
|
2023-07-11 00:07:24 -07:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "action.h"
|
|
|
|
|
2018-07-16 08:48:31 -07:00
|
|
|
float compute_freq_for_midi_note(uint8_t note);
|
|
|
|
|
2017-02-25 19:25:33 -08:00
|
|
|
bool process_audio(uint16_t keycode, keyrecord_t *record);
|
|
|
|
void process_audio_noteon(uint8_t note);
|
|
|
|
void process_audio_noteoff(uint8_t note);
|
2017-03-02 11:40:06 -08:00
|
|
|
void process_audio_all_notes_off(void);
|