summaryrefslogtreecommitdiff
path: root/keyboard/planck/beeps.h
blob: ec1d349d838e6b2ebc2d8ab2c59cf16d0d296e18 (plain)
1
2
3
4
5
6
7
8
9
10
11
#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();