#ifndef __SOUND_H__ #define __SOUND_H__ #include <stdbool.h> // Enable or disable the normal alarm void setAlarmState(bool enabled); // Trigger a short notification sound (100ms) void triggerNotificationSound(); void initSound(); #endif