rtc_class

Dependencies:   RTC8563 mbed

Fork of rtc_class by HIMBED_3AHELI

Revision:
10:83960ae8a0ee
diff -r fc8c66a7c87a -r 83960ae8a0ee DateString.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/DateString.h	Thu Apr 30 10:48:18 2015 +0000
@@ -0,0 +1,20 @@
+// DateString.h
+#include "mbed.h"
+#include "const.h"
+#include "Date.h"
+#include "string"
+
+#ifndef DATESTRING_H
+#define DATESTRING_H
+class DateString : public Date // Date abgeleitet von RTC8563
+{
+public:
+    uint8_t GetDay();
+    uint8_t GetMonth();
+    uint8_t GetYear();
+    uint8_t GetNextDay();
+    using Date::GetDay;
+    virtual string Date::GetDay(string str)
+};
+
+#endif
\ No newline at end of file