Rtc class

Dependencies:   RTC8563 mbed

Fork of rtc_class by HIMBED_3AHELI

DateString.cpp

Committer:
Andi104
Date:
2015-04-30
Revision:
6:a52551f2f398

File content as of revision 6:a52551f2f398:

#include "DateString.h"
#include "RTC8563.h"
// 2. Methode überschreiben
uint8_t DateString::GetDay()
{
    //uint8_t day = rtc_read(DAYS);
    //return bcdToUint(day & 0x3F);
    uint8_t day = Date::GetDay(); //Aufruf der GetDay-Methode aus basisklasse Date mit Scope-Op
    //3. Erweitern von Methoden der Basisklasse
    day = day -5;
    return day;
}

uint8_t DateString::GetNextDay()
{
    uint8_t day = GetDay();
    return ++day;
}

string DateString::GetDay(string str)
{
    string day = str + " In Date Day: " + toString(GetDay());
    return day;
}