2015-08-16 23:52:03 +02:00
|
|
|
#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);
|
2015-08-29 17:54:38 +02:00
|
|
|
void play_note(double freq, int vol);
|
|
|
|
void stop_note(double freq);
|
|
|
|
void stop_all_notes();
|