qmk-firmware/quantum/beeps.h

12 lines
288 B
C
Raw Normal View History

2015-08-17 05:52:03 +08:00
#include <stdint.h>
#include <stdbool.h>
#include <avr/io.h>
#include <util/delay.h>
void note(int x, float length);
void beeps();
void true_note(float x, float y, float length);
2015-08-29 23:54:38 +08:00
void play_note(double freq, int vol);
void stop_note(double freq);
2015-09-01 00:39:53 +08:00
void stop_all_notes();
void init_notes();