]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboard/preonic/beeps.h
Merge branch 'master' of https://github.com/jackhumbert/tmk_keyboard
[qmk_firmware.git] / keyboard / preonic / beeps.h
1 #include <stdint.h>
2 #include <stdbool.h>
3 #include <avr/io.h>
4 #include <util/delay.h>
5
6 void note(int x, float length);
7 void beeps();
8 void true_note(float x, float y, float length);
9 void play_note(double freq, int vol);
10 void stop_note(double freq);
11 void stop_all_notes();
12 void init_notes();