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: AdaFruit_RGBLCDShield MCP23017 mbed RTclock
Fork of MCP_test by
Modules/TitleModule.h@11:96146db429de, 2014-08-10 (annotated)
- Committer:
- vtraveller
- Date:
- Sun Aug 10 15:45:03 2014 +0000
- Revision:
- 11:96146db429de
- Parent:
- 10:3fcab08717fc
- Child:
- 13:9641bc42db92
Added support for changing time.
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| vtraveller | 10:3fcab08717fc | 1 | #ifndef __TITLEMODULE_H__ |
| vtraveller | 10:3fcab08717fc | 2 | #define __TITLEMODULE_H__ |
| vtraveller | 10:3fcab08717fc | 3 | |
| vtraveller | 10:3fcab08717fc | 4 | #include "module.h" |
| vtraveller | 10:3fcab08717fc | 5 | |
| vtraveller | 10:3fcab08717fc | 6 | class TitleModule |
| vtraveller | 10:3fcab08717fc | 7 | : public Module |
| vtraveller | 10:3fcab08717fc | 8 | { |
| vtraveller | 10:3fcab08717fc | 9 | public: |
| vtraveller | 10:3fcab08717fc | 10 | TitleModule(Adafruit_RGBLCDShield & in_cLCD); |
| vtraveller | 10:3fcab08717fc | 11 | virtual ~TitleModule(); |
| vtraveller | 10:3fcab08717fc | 12 | |
| vtraveller | 10:3fcab08717fc | 13 | virtual void show(); |
| vtraveller | 10:3fcab08717fc | 14 | }; |
| vtraveller | 10:3fcab08717fc | 15 | |
| vtraveller | 10:3fcab08717fc | 16 | #endif /* __TITLEMODULE_H__ */ |
