diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-01-13 00:25:31 -0500 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2016-01-13 00:25:31 -0500 |
commit | 4c100dbbef5b97290cbe6d4846575a940649c958 (patch) | |
tree | 86cb7b86333342e323c35e16071e492b475731ea /quantum/beeps.h | |
parent | 263344d42f8b16e1cd80c4c871e15fa86208d086 (diff) |
note seq, start-up beeps, function beeps
Diffstat (limited to 'quantum/beeps.h')
-rw-r--r-- | quantum/beeps.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/quantum/beeps.h b/quantum/beeps.h index a7fcf6c23c..4ccc344973 100644 --- a/quantum/beeps.h +++ b/quantum/beeps.h @@ -3,10 +3,13 @@ #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); +bool playing_notes; + +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 |