Original programm

Dependencies:   RTC8563 mbed

Fork of rtc_class by HIMBED_3AHELI

Date.h

Committer:
bulmecisco
Date:
2015-04-23
Revision:
6:ebe2350041f1
Parent:
5:fc8c66a7c87a
Child:
8:54a6f83a2339

File content as of revision 6:ebe2350041f1:

/***********************************
name:   date.h    Version: 0.3
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 GetYear, GetMonth;
    Constructor to initialize Date on RTC
    Alarm methode
***********************************/

#include "mbed.h"
#include "const.h"
#include "RTC8563.h"
#include "string"

#ifndef DATE_H
#define DATE_H
class Date : public RTC8563 // Date abgeleitet von RTC8563
{
protected:
    uint8_t bcdToUint(uint8_t const nybbles);   // private Methode
    string toString(uint8_t value);

public:
    Date()  // Standard Konstruktor
    {
    }   
    uint8_t GetDay();   // Methode
};
#endif