mirror of
https://github.com/travisgoodspeed/goodwatch
synced 2024-11-22 08:09:13 +00:00
591abe71b6
Signed-off-by: Eric Busch <eric@altdetroit.com>
18 lines
315 B
C
18 lines
315 B
C
/*! \file alarm.h
|
|
\brief alarm application.
|
|
*/
|
|
|
|
//! Initialize the alarm.
|
|
void alarm_init();
|
|
//! Exit to the next application.
|
|
int alarm_exit();
|
|
//! Draw the alarm.
|
|
void alarm_draw();
|
|
|
|
//! A button has been pressed for the alarm.
|
|
int alarm_keypress(char ch);
|
|
|
|
//! Toggle the alarm
|
|
void toggle_alarm(int enable);
|
|
|