rtc_class

Dependencies:   RTC8563 mbed

Fork of rtc_class by HIMBED_3AHELI

Date.h

Committer:
bulmecisco
Date:
2015-04-23
Revision:
5:fc8c66a7c87a
Parent:
4:a4d39c018c65
Child:
6:ebe2350041f1
Child:
10:83960ae8a0ee

File content as of revision 5:fc8c66a7c87a:

/***********************************
name:   date.h    Version: 0.2
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