1
0

sound.h 241 B

1234567891011121314
  1. #ifndef __SOUND_H__
  2. #define __SOUND_H__
  3. #include <stdbool.h>
  4. // Enable or disable the normal alarm
  5. void setAlarmState(bool enabled);
  6. // Trigger a short notification sound (100ms)
  7. void triggerNotificationSound();
  8. void initSound();
  9. #endif