1
0
Fork 0
This commit is contained in:
Jack Humbert 2015-08-16 17:52:03 -04:00
parent b3f638f491
commit f7bca5c41a
12 changed files with 683 additions and 0 deletions

9
keyboard/planck/beeps.h Normal file
View file

@ -0,0 +1,9 @@
#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(float freq, int length);