-
Notifications
You must be signed in to change notification settings - Fork 14
/
Alarm.h
41 lines (34 loc) · 785 Bytes
/
Alarm.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
* Alarm
* Klasse fuer die Weckfunktion.
*
* @mc Arduino/RBBB
* @autor Christian Aschoff / caschoff _AT_ mac _DOT_ com
* @version 1.1
* @created 22.1.2013
* @update 16.2.2015
*
* Versionshistorie:
* V 1.0: - Erstellt.
* V 1.1: - Unterstuetzung fuer die alte Arduino-IDE (bis 1.0.6) entfernt.
*/
#ifndef ALARM_H
#define ALARM_H
#include "Arduino.h"
#include "TimeStamp.h"
class Alarm : public TimeStamp {
public:
Alarm(byte speakerPin);
void activate();
void deactivate();
void buzz(boolean on);
byte getShowAlarmTimeTimer();
void setShowAlarmTimeTimer(byte seconds);
void decShowAlarmTimeTimer();
boolean isActive();
private:
boolean _isActive;
byte _showAlarmTimeTimer;
byte _speakerPin;
};
#endif