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

Committer:
togayan
Date:
Mon Feb 17 08:13:21 2014 +0000
Revision:
2:6f0158399eff
Parent:
1:f8713c387a68
Child:
3:061cccf4093a
test

Who changed what in which revision?

UserRevisionLine numberNew contents of line
togayan 1:f8713c387a68 1 #ifndef I_NOTIFY_UPDATE_H
togayan 1:f8713c387a68 2 #define I_NOTIFY_UPDATE_H
togayan 1:f8713c387a68 3
togayan 2:6f0158399eff 4 #include "OperationMode.h"
togayan 2:6f0158399eff 5
togayan 1:f8713c387a68 6 namespace Model
togayan 1:f8713c387a68 7 {
togayan 1:f8713c387a68 8 class I_NotifyUpdate
togayan 1:f8713c387a68 9 {
togayan 1:f8713c387a68 10 public:
togayan 1:f8713c387a68 11 virtual ~I_NotifyUpdate() {}
togayan 1:f8713c387a68 12
togayan 1:f8713c387a68 13 virtual void dateTimeUpdated() = 0;
togayan 2:6f0158399eff 14 virtual void mode(OperationMode mode) = 0;
togayan 1:f8713c387a68 15 };
togayan 1:f8713c387a68 16 }
togayan 1:f8713c387a68 17
togayan 1:f8713c387a68 18 #endif // I_NOTIFY_UPDATE_H