Files
pintos_22/src/devices/speaker.h
2024-10-01 23:37:39 +01:00

9 lines
169 B
C

#ifndef DEVICES_SPEAKER_H
#define DEVICES_SPEAKER_H
void speaker_on (int frequency);
void speaker_off (void);
void speaker_beep (void);
#endif /* devices/speaker.h */