added GetDay() GetYear() GetWeek()

Dependencies:   mbed

Fork of rtc_class by Josef Kager

Committer:
KagerJ
Date:
Thu Apr 30 10:53:00 2015 +0000
Revision:
3:75f5352b387d
added GetDay() GetYear() GetWeek()

Who changed what in which revision?

UserRevisionLine numberNew contents of line
KagerJ 3:75f5352b387d 1 #include "mbed.h"
KagerJ 3:75f5352b387d 2 #include "const.h"
KagerJ 3:75f5352b387d 3 #include "RTC8563.h"
KagerJ 3:75f5352b387d 4 #include "string"
KagerJ 3:75f5352b387d 5 #include "Date.h"
KagerJ 3:75f5352b387d 6
KagerJ 3:75f5352b387d 7 #ifndef DATESTRING_H
KagerJ 3:75f5352b387d 8 #define DATESTRRING_H
KagerJ 3:75f5352b387d 9
KagerJ 3:75f5352b387d 10 class DateString : public Date
KagerJ 3:75f5352b387d 11 {
KagerJ 3:75f5352b387d 12 public:
KagerJ 3:75f5352b387d 13 uint8_t GetDay();
KagerJ 3:75f5352b387d 14 };
KagerJ 3:75f5352b387d 15
KagerJ 3:75f5352b387d 16 #endif