14 lines
277 B
C
14 lines
277 B
C
void danger_status(void);
|
|
void normal_status(void);
|
|
void fan_on(void);
|
|
void fan_off(void);
|
|
void light_on(void);
|
|
void light_off(void);
|
|
void beep_on(void);
|
|
void beep_off(void);
|
|
int status_init(void);
|
|
|
|
extern int light_status;
|
|
extern int fan_status ;
|
|
|
|
#define EVENT_DELAY (1 << 3) |