diff options
author | Jack Humbert <jack.humb@gmail.com> | 2015-10-26 14:49:46 -0400 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2015-10-26 14:49:46 -0400 |
commit | 46e7fb2d3ccd699c0a1b1fd9d02860b1f2a44141 (patch) | |
tree | f0b00f664ecdaf83e30f27baf20780eb5d91c39a /quantum/beeps.h | |
parent | ff8d8a50dfbb8502003a5181878c54a71b8c57d5 (diff) |
quantum separated
Diffstat (limited to 'quantum/beeps.h')
-rw-r--r-- | quantum/beeps.h | 12 |
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 |