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