sound.h 255 B

12345678910111213141516171819
  1. #ifndef __SOUND_H__
  2. #define __SOUND_H__
  3. #include <stdbool.h>
  4. typedef enum {
  5. ALARM_OFF,
  6. ALARM_ON,
  7. ALARM_TEST
  8. } alarmState_t;
  9. void initSound();
  10. void enableNotificationSound(bool enable);
  11. void alarmMasterControl(alarmState_t state);
  12. #endif