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 Date.h Source File

Date.h

00001 #include "mbed.h"
00002 #include "const.h"
00003 #include "RTC8563.h"
00004 
00005 #ifndef DATE.H
00006 #define DATE.H
00007 class Date : public RTC8563
00008 {
00009     private:
00010     uint8_t bcdToUint(uint8_t const nybbles);
00011     public:
00012     uint8_t GetDay();
00013     uint8_t GetMonth();
00014     uint8_t GetYear();
00015     uint8_t GetWeek();
00016 };
00017 
00018 #endif