Date Library

Dependents:   rtc_func

Date.h

Committer:
wolpra98
Date:
2015-04-23
Revision:
0:d2f9a55f0e6d

File content as of revision 0:d2f9a55f0e6d:

#include "mbed.h"
#include "const.h"
#include "RTC8563.h"

#ifndef DATE_H
#define DATE_H
class Date : public RTC8563
{
private:
    uint8_t bcdToUint(uint8_t const nybbles);
public:
    uint8_t GetDay();
public:
    uint8_t GetMonth();
public:
    uint8_t GetYear();
};


#endif