real time clock...Marcel Reath

Dependencies:   RTC8563 mbed

Fork of rtc_func by HIMBED_3AHELI

main.cpp

Committer:
MarcelReath
Date:
2015-04-22
Revision:
5:22c2676c8acf
Parent:
4:f3adf7e6dd40

File content as of revision 5:22c2676c8acf:

/***********************************
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: %i.%i.%i\n", rtc.GetDay(),rtc.GetMonth(),rtc.GetYear());
        wait(1);
    }
}