functions from rtc_func transferred to class RTC8563

Dependencies:   RTC8563 mbed

Fork of rtc_func by HIMBED_3AHELI

Goto Inhalt

Revision:
4:a4d39c018c65
Parent:
3:c6081814064d
Child:
5:fc8c66a7c87a
--- a/Date.h	Mon Apr 20 05:53:40 2015 +0000
+++ b/Date.h	Mon Apr 20 08:35:58 2015 +0000
@@ -1,6 +1,7 @@
 #include "mbed.h"
 #include "const.h"
 #include "RTC8563.h"
+#include "string"
 
 #ifndef DATE_H
 #define DATE_H
@@ -8,6 +9,8 @@
 {
 private:
     uint8_t bcdToUint(uint8_t const nybbles);   // private Methode
+    string toString(uint8_t value);
+
 public:
     Date()  // Standard Konstruktor
     {}