-
Notifications
You must be signed in to change notification settings - Fork 14
/
MyRTC.h
59 lines (47 loc) · 1.56 KB
/
MyRTC.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/**
* MyRTC
* Klasse fuer den Zugriff auf die DS1307/DS3231 Echtzeituhr.
*
* @mc Arduino/RBBB
* @autor Christian Aschoff / caschoff _AT_ mac _DOT_ com
* @version 2.1
* @created 1.3.2011
* @updated 16.2.2015
*
* Versionshistorie:
* V 1.1: - dayOfMonth nach date umbenannt.
* V 1.2: - Kompatibilitaet zu Arduino-IDE 1.0 hergestellt.
* V 1.3: - getMinutesOfDay eingefuehrt.
* V 1.4: - getMinutesOf12HoursDay eingefuehrt.
* V 1.5: - Optimierung hinsichtlich Speicherbedarf.
* V 1.6: - Verbessertes Debugging.
* V 1.7: - Multi-MCU-Faehigkeit hinzugefuegt.
* V 1.8: - Auslesen verbessert. Falls die angeforderten 7 Bytes nicht kommen, verwerfen und neu anfordern.
* V 1.9: - Macro zum Stellen der Uhr durch die Compile-Zeit von Kee-Labs geklaut und hier eingefuegt.
* V 2.0: - DS1307 nach MyRTC umbenannt, weil es jetzt nicht mehr nur um die DS1307 geht.
* - Getrennte Logik fuer das Rachtencksignal (SQW) eingefuehrt, danke an Erich M.
* V 2.1: - Unterstuetzung fuer die alte Arduino-IDE (bis 1.0.6) entfernt.
*/
#ifndef MYRTC_H
#define MYRTC_H
#include "Arduino.h"
#include "TimeStamp.h"
class MyRTC : public TimeStamp {
public:
MyRTC(int address, byte statusLedPin);
void statusLed(boolean on);
void readTime();
void writeTime();
void enableSQWOnDS1307();
void enableSQWOnDS3231();
void setSeconds(byte seconds);
byte getSeconds();
private:
int _address;
byte _statusLedPin;
byte _seconds;
byte decToBcd(byte val);
byte bcdToDec(byte val);
uint8_t conv2d(const char* p);
};
#endif