ok

Dependencies:   RTC8563 mbed

Fork of rtc_class by HIMBED_3AHELI

main.cpp

Committer:
bulmecisco
Date:
2015-04-20
Revision:
3:c6081814064d
Parent:
2:f75062350241
Child:
5:fc8c66a7c87a

File content as of revision 3:c6081814064d:

/***********************************
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);
    }
}