rtc class

Dependencies:   RTC8563 mbed

Fork of rtc_class by HIMBED_3AHELI

Revision:
8:54a6f83a2339
Parent:
7:1e1e0af5d32e
diff -r 1e1e0af5d32e -r 54a6f83a2339 DateString.cpp
--- a/DateString.cpp	Thu Apr 23 10:14:42 2015 +0000
+++ b/DateString.cpp	Thu Apr 23 10:43:38 2015 +0000
@@ -12,4 +12,18 @@
     // 3. Erweitern von Methoden der Basisklasse
     day = day-5;
     return day;
-} 
\ No newline at end of file
+} 
+
+// 4. Definieren neuer Methoden 
+uint8_t DateString::GetNextDay()  
+{
+    uint8_t day = GetDay();
+    return ++day;
+}
+
+
+
+
+
+
+