1
0
Fork 0

quantum separated

This commit is contained in:
Jack Humbert 2015-10-26 14:49:46 -04:00
parent ff8d8a50df
commit 46e7fb2d3c
26 changed files with 359 additions and 384 deletions

12
quantum/beeps.h Normal file
View file

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