ttt2/my_src/alarm.h
Wolfgang Hottgenroth 7f54b22e6b buzzer is working
2017-06-12 17:50:08 +02:00

23 lines
272 B
C

/*
* alarm.h
*
* Created on: Jun 2, 2017
* Author: wn
*/
#ifndef ALARM_H_
#define ALARM_H_
typedef enum {
TIME_ALARM,
TEMPERATURE_ALARM
} tAlarmType;
void alarmInit();
void enableAlarm(tAlarmType alarmType);
void disableAlarm();
#endif /* ALARM_H_ */