summaryrefslogtreecommitdiff
path: root/quantum/beeps.h
diff options
context:
space:
mode:
Diffstat (limited to 'quantum/beeps.h')
-rw-r--r--quantum/beeps.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/quantum/beeps.h b/quantum/beeps.h
new file mode 100644
index 0000000000..378983c605
--- /dev/null
+++ b/quantum/beeps.h
@@ -0,0 +1,12 @@
+#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);
+void play_note(double freq, int vol);
+void stop_note(double freq);
+void stop_all_notes();
+void init_notes(); \ No newline at end of file