forked from bracci/Qlockthree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TimeStamp.h
80 lines (67 loc) · 2.07 KB
/
TimeStamp.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/**
* TimeStamp
* Klasse fuer die Kapselung eines Zeitstempels. Dadurch lassen sich
* Zeiten aus der Echtzeituhr und von dem DCF77-Empfaenger
* leichter verarbeiten und vergleichen.
*
* @mc Arduino/RBBB
* @autor Christian Aschoff / caschoff _AT_ mac _DOT_ com
* @version 1.7a
* @created 2.3.2011
* @updated 29.03.2016 (ergänzt durch A. Mueller)
*
* Versionshistorie:
* V 1.1: - Fehler in toString() behoben.
* V 1.2: - Kompatibilitaet zu Arduino-IDE 1.0 hergestellt.
* V 1.3: - neuer Konstruktor, neue Methoden.
* V 1.4: - getMinutesOf12HoursDay eingefuehrt.
* V 1.5: - Optimierung hinsichtlich Speicherbedarf.
* V 1.6: - Verbessertes Debugging & leeren Konstruktor entfernt.
* V 1.7: - Unterstuetzung fuer die alte Arduino-IDE (bis 1.0.6) entfernt.
* V 1.7a: - Funktion getMinutesOfCentury() hinzugefügt
*/
#ifndef TIMESTAMP_H
#define TIMESTAMP_H
#include "Arduino.h"
class TimeStamp {
public:
TimeStamp(byte minutes, byte hours, byte date, byte dayOfWeek, byte month, byte year);
void incMinutes();
void decMinutes();
void incFiveMinutes();
void incHours();
void decHours();
void incDate(byte addDate = 1);
void incMonth(byte addMonth = 1);
void incYear(byte addYear = 1);
byte getMinutes();
int getMinutesOfDay();
int getMinutesOf12HoursDay(int minutesDiff);
byte getHours();
byte getDate();
byte getDayOfWeek();
byte getMonth();
byte getYear();
unsigned long getMinutesOfCentury();
void setMinutes(byte minutes);
void setHours(byte hours);
void setDate(byte date);
void setDayOfWeek(byte dayOfWeek);
void setMonth(byte month);
void setYear(byte year);
void set(byte minutes, byte hours, byte date, byte dayOfWeek, byte month, byte year);
void set(TimeStamp* timeStamp);
char* asString();
protected:
byte getDaysOfMonth(byte month, byte year);
void CalculateAndSetDayOfWeek();
void CheckDateValidity();
byte _minutes;
byte _hours;
byte _date;
byte _dayOfWeek;
byte _month;
byte _year;
char _cDateTime[17];
};
#endif