Clock with Real-Time Clock (RTC-8564) and I2C LCD module(SB1062B).

Dependencies:   DebouncedEdgeIn I2cLCD_cursor Rtc8564 mbed beep

/media/uploads/togayan/imgp0004s.jpg /media/uploads/togayan/lcdclock_circuit_rev4.png

Model/I_SetPresentTime.h

Committer:
togayan
Date:
2014-03-01
Revision:
6:e7073adacdc8
Parent:
3:061cccf4093a

File content as of revision 6:e7073adacdc8:

#ifndef I_SET_PRESENT_TIME_H
#define I_SET_PRESENT_TIME_H

namespace Model
{
class I_SetPresentTime
{
public:
    virtual ~I_SetPresentTime() {}

    virtual void setPresentTime() = 0;
};
}

#endif // I_SET_PRESENT_TIME_H