summaryrefslogtreecommitdiff
path: root/quantum/audio.h
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2016-01-23 20:34:05 -0500
committerJack Humbert <jack.humb@gmail.com>2016-01-23 20:34:05 -0500
commit5143c59bdff8e0b8cb896b905ab643ab8293ea47 (patch)
tree7082bac0facec617715d55deddca2b448ad880fa /quantum/audio.h
parent544a49329cac78206c0d195f2e7bfd39db05507d (diff)
parentc753bfcc144e4158a1e683c2c93b32667dc08388 (diff)
Merge branch 'audio' of https://github.com/jackhumbert/tmk_keyboard into smarkefile
Diffstat (limited to 'quantum/audio.h')
-rw-r--r--quantum/audio.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/quantum/audio.h b/quantum/audio.h
new file mode 100644
index 0000000000..99203cea7a
--- /dev/null
+++ b/quantum/audio.h
@@ -0,0 +1,11 @@
+#include <stdint.h>
+#include <stdbool.h>
+#include <avr/io.h>
+#include <util/delay.h>
+
+void play_sample(uint8_t * s, uint16_t l, bool r);
+void play_note(double freq, int vol);
+void stop_note(double freq);
+void stop_all_notes();
+void init_notes();
+void play_notes(float (*np)[][2], uint8_t n_length, bool n_repeat); \ No newline at end of file