Johannes Mayerhofer
/
rtc_class2
Original programm
Fork of rtc_class by
main.cpp
- Committer:
- bulmecisco
- Date:
- 2015-04-23
- Revision:
- 5:fc8c66a7c87a
- Parent:
- 3:c6081814064d
- Child:
- 6:ebe2350041f1
File content as of revision 5:fc8c66a7c87a:
/*********************************** name: main.cpp Version: 0.1 author: PE HTL BULME email: pe@bulme.at description: Real Time Clock (RTC8563) on HIMBED M0 - LPC11U24 class Date inherited from class RTC8563 Example methode GetDay implemented ToDo: implement year, month; ***********************************/ #include "mbed.h" #include "const.h" #include "RTC8563.h" #include "string" #include "Date.h" Serial pc(USBTX, USBRX); uint8_t year, month, day; int main() { Date rtc; // instanziieren des Objektes rtc while(1) { pc.printf("Date.Day: %i\n", rtc.GetDay()); wait(1); } }