note seq, start-up beeps, function beeps

This commit is contained in:
Jack Humbert 2016-01-13 00:25:31 -05:00
parent 263344d42f
commit 4c100dbbef
3 changed files with 183 additions and 46 deletions

View file

@ -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);