Rtc class

Dependencies:   RTC8563 mbed

Fork of rtc_class by HIMBED_3AHELI

Committer:
Andi104
Date:
Thu Apr 30 10:48:30 2015 +0000
Revision:
6:a52551f2f398
Parent:
5:fc8c66a7c87a
RTC Class

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"
Andi104 6:a52551f2f398 18 #include "DateString.h"
bulmecisco 2:f75062350241 19
bulmecisco 0:32ae5fd83722 20 Serial pc(USBTX, USBRX);
bulmecisco 2:f75062350241 21
bulmecisco 3:c6081814064d 22 uint8_t year, month, day;
bulmecisco 3:c6081814064d 23
bulmecisco 0:32ae5fd83722 24 int main()
bulmecisco 0:32ae5fd83722 25 {
Andi104 6:a52551f2f398 26 Date *pBoth;
Andi104 6:a52551f2f398 27 DateString ds; // instanziieren des Objektes ds
Andi104 6:a52551f2f398 28 Date d; //Instanziieren des Objektes d
Andi104 6:a52551f2f398 29 pBoth = &d; //
bulmecisco 2:f75062350241 30
bulmecisco 0:32ae5fd83722 31 while(1) {
Andi104 6:a52551f2f398 32 //pc.printf("DateString.Day: %i\n", pBoth->GetDay());
Andi104 6:a52551f2f398 33 pBoth = &d
Andi104 6:a52551f2f398 34 pc.printf("Ueberladen GetDay: %s\n",pBoth->GetDay("Where am I?"));
Andi104 6:a52551f2f398 35 pBoth = &ds;
Andi104 6:a52551f2f398 36 pc.printf("Ueberladen GetDay: %s\n",pBoth->GetDay("Where am I?"));
bulmecisco 0:32ae5fd83722 37 wait(1);
bulmecisco 0:32ae5fd83722 38 }
bulmecisco 2:f75062350241 39 }