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-02-22
Revision:
3:061cccf4093a
Parent:
2:6f0158399eff

File content as of revision 3:061cccf4093a:

#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