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_SetMode.h

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

File content as of revision 6:e7073adacdc8:

#ifndef I_SET_MODE_H
#define I_SET_MODE_H

#include "OperationMode.h"

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

    virtual void mode(OperationMode mode) = 0;
};
}

#endif // I_SET_MODE_H