functions from rtc_func transferred to class RTC8563

Dependencies:   RTC8563 mbed

Fork of rtc_func by HIMBED_3AHELI

Goto Inhalt

Committer:
bulmecisco
Date:
Mon Apr 20 05:53:40 2015 +0000
Revision:
3:c6081814064d
Parent:
2:f75062350241
Child:
5:fc8c66a7c87a
class Date inherited from class RTC8563; Example methode GetDay implemented

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bulmecisco 0:32ae5fd83722 1 /***********************************
bulmecisco 0:32ae5fd83722 2 name: main.cpp Version: 0.1
bulmecisco 0:32ae5fd83722 3 author: PE HTL BULME
bulmecisco 0:32ae5fd83722 4 email: pe@bulme.at
bulmecisco 0:32ae5fd83722 5 description:
bulmecisco 0:32ae5fd83722 6 Real Time Clock (RTC8563)
bulmecisco 0:32ae5fd83722 7 on HIMBED M0 - LPC11U24
bulmecisco 3:c6081814064d 8 class Date inherited from class RTC8563
bulmecisco 3:c6081814064d 9 Example methode GetDay implemented
bulmecisco 3:c6081814064d 10 ToDo:
bulmecisco 3:c6081814064d 11 implement year, month;
bulmecisco 0:32ae5fd83722 12 ***********************************/
bulmecisco 0:32ae5fd83722 13 #include "mbed.h"
bulmecisco 2:f75062350241 14 #include "const.h"
bulmecisco 2:f75062350241 15 #include "RTC8563.h"
bulmecisco 2:f75062350241 16 #include "string"
bulmecisco 3:c6081814064d 17 #include "Date.h"
bulmecisco 2:f75062350241 18
bulmecisco 0:32ae5fd83722 19 Serial pc(USBTX, USBRX);
bulmecisco 2:f75062350241 20
bulmecisco 3:c6081814064d 21 uint8_t year, month, day;
bulmecisco 3:c6081814064d 22
bulmecisco 0:32ae5fd83722 23 int main()
bulmecisco 0:32ae5fd83722 24 {
bulmecisco 3:c6081814064d 25 Date rtc; // instanziieren des Objektes rtc
bulmecisco 2:f75062350241 26
bulmecisco 0:32ae5fd83722 27 while(1) {
bulmecisco 3:c6081814064d 28 pc.printf("____Date.Day: %i\n", rtc.GetDay());
bulmecisco 0:32ae5fd83722 29 wait(1);
bulmecisco 0:32ae5fd83722 30 }
bulmecisco 2:f75062350241 31 }