summaryrefslogtreecommitdiff
path: root/quantum/beeps.h
blob: a7fcf6c23c8df82d82e5041a9a7f89c8e01eee05 (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();