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: SX1276Lib AdaFruit_RGBLCD MCP23017 mbed
Fork of AdaFruit_RGBLCD by
Modules/TitleModule.cpp@13:9641bc42db92, 2014-08-11 (annotated)
- Committer:
- vtraveller
- Date:
- Mon Aug 11 19:11:43 2014 +0000
- Revision:
- 13:9641bc42db92
- Parent:
- 11:96146db429de
- Child:
- 15:d1eaddb363be
Created a scrollable menu system based on modules to work against the Adafruit RGB LCD library.; Modules can be created and installed as menu items with display, cursor and edit capabilities.
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| vtraveller | 10:3fcab08717fc | 1 | #include "mbed.h" |
| vtraveller | 10:3fcab08717fc | 2 | #include "TitleModule.h" |
| vtraveller | 10:3fcab08717fc | 3 | |
| vtraveller | 13:9641bc42db92 | 4 | TitleModule::TitleModule(Serial & in_cDisplay) |
| vtraveller | 13:9641bc42db92 | 5 | : Module(in_cDisplay) |
| vtraveller | 10:3fcab08717fc | 6 | { |
| vtraveller | 10:3fcab08717fc | 7 | } |
| vtraveller | 10:3fcab08717fc | 8 | |
| vtraveller | 10:3fcab08717fc | 9 | TitleModule::~TitleModule() |
| vtraveller | 10:3fcab08717fc | 10 | { |
| vtraveller | 10:3fcab08717fc | 11 | } |
| vtraveller | 10:3fcab08717fc | 12 | |
| vtraveller | 10:3fcab08717fc | 13 | void TitleModule::show() |
| vtraveller | 10:3fcab08717fc | 14 | { |
| vtraveller | 13:9641bc42db92 | 15 | m_cDisplay.printf("System Running"); |
| vtraveller | 10:3fcab08717fc | 16 | } |
