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:
Sat Mar 01 00:18:23 2014 +0000
Revision:
6:e7073adacdc8
Parent:
3:061cccf4093a
Add indicator LED.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
togayan 1:f8713c387a68 1 #ifndef I_SET_PRESENT_TIME_H
togayan 1:f8713c387a68 2 #define I_SET_PRESENT_TIME_H
togayan 1:f8713c387a68 3
togayan 1:f8713c387a68 4 namespace Model
togayan 1:f8713c387a68 5 {
togayan 1:f8713c387a68 6 class I_SetPresentTime
togayan 1:f8713c387a68 7 {
togayan 1:f8713c387a68 8 public:
togayan 1:f8713c387a68 9 virtual ~I_SetPresentTime() {}
togayan 1:f8713c387a68 10
togayan 1:f8713c387a68 11 virtual void setPresentTime() = 0;
togayan 1:f8713c387a68 12 };
togayan 1:f8713c387a68 13 }
togayan 1:f8713c387a68 14
togayan 1:f8713c387a68 15 #endif // I_SET_PRESENT_TIME_H