12345678910111213141516171819 |
- #ifndef __SOUND_H__
- #define __SOUND_H__
- #include <stdbool.h>
- typedef enum {
- ALARM_OFF,
- ALARM_ON,
- ALARM_TEST
- } alarmState_t;
- void initSound();
- void enableNotificationSound(bool enable);
- void alarmMasterControl(alarmState_t state);
- #endif
|