Josef Kager / Mbed 2 deprecated rtc_class2

Dependencies:   mbed

Fork of rtc_class by Josef Kager

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers DateString.cpp Source File

DateString.cpp

00001 #include "DateString.h"
00002 #include "RTC8563.h"
00003 
00004 //2. Methode überschreiben
00005 uint8_t DateSting::GetDay()
00006 {
00007     uint8_t day= Date::GetDay(); //Aufruf der GetDay- Methode aus Basisklasse Date  mit Scope Operator
00008     //Erweitern von Methoden der Basisklasse
00009     day = day - 5;
00010     return day;
00011 }