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-02-22
Revision:
3:061cccf4093a

File content as of revision 3:061cccf4093a:

#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