some stuff

This commit is contained in:
2022-01-28 14:00:31 -06:00
parent d94c63a964
commit 8dc484e0d1
49 changed files with 3511 additions and 664 deletions

View File

@@ -53,7 +53,7 @@ void piezo_init();
void play_note(Note noteToPlay);
// void play_note(double playFrequency, double playDuration);
void play_song(Note *song);
void play_song(Note *songToPlay);
// Note Frequency Symbols
// Rest technically = 0
@@ -161,7 +161,7 @@ void play_song(Note *song);
// Ending "termination" value indicating end of a song
#define T 5000.00
// Tempo value set at 120 beats per min
#define BPM 120
#define BPM 240
#define H 2*Q
#define Q 60000/BPM
#define E Q/2