Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: DebouncedEdgeIn I2cLCD_cursor Rtc8564 mbed beep
Model/I_SetPresentTime.h@6:e7073adacdc8, 2014-03-01 (annotated)
- 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?
| User | Revision | Line number | New 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 |