keychron_qmk_firmware/quantum/audio.h

11 lines
313 B
C
Raw Normal View History

2015-08-17 03:52:03 +06:00
#include <stdint.h>
#include <stdbool.h>
#include <avr/io.h>
#include <util/delay.h>
void play_sample(uint8_t * s, uint16_t l, bool r);
2015-08-29 21:54:38 +06:00
void play_note(double freq, int vol);
void stop_note(double freq);
2015-08-31 22:39:53 +06:00
void stop_all_notes();
2016-01-12 03:53:33 +06:00
void init_notes();
void play_notes(float (*np)[][2], uint8_t n_length, bool n_repeat);