12 lines
169 B
C
12 lines
169 B
C
#ifndef ESPRESSO_PC_SPEAKER_H
|
|
#define ESPRESSO_PC_SPEAKER_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void play_sound(uint32_t nfrequence);
|
|
void stop_sound(void);
|
|
|
|
void beep(void);
|
|
|
|
#endif
|