functions from rtc_func transferred to class RTC8563

Dependencies:   RTC8563 mbed

Fork of rtc_func by HIMBED_3AHELI

Goto Inhalt

main.cpp

Committer:
wolpra98
Date:
2015-04-30
Revision:
10:83960ae8a0ee
Parent:
5:fc8c66a7c87a

File content as of revision 10:83960ae8a0ee:

/***********************************
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"
#include "DateString.h"

Serial pc(USBTX, USBRX);

uint8_t year, month, day;

int main()
{
    Date *pBoth;
    DateString ds;  // instanziieren des Objektes rtc
    Date d;

    while(1) {
        pBoth = &d;
        pc.printf("DateString.Day: %i\n", pBoth->GetDay());
        pc.printf("Ueberladen Day: %s\n", pBoth->GetDay("where am I?"));
        pBoth=&ds
        pc.printf("DateString.NextDay: %i\n", pBoth->GetNextDay());
        pc.printf("Ueberladen Day: %s\n", pBoth->GetDay("where am I?"));
        wait(1);
    }
}