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@10:3fcab08717fc, 2014-08-10 (annotated)
- Committer:
- vtraveller
- Date:
- Sun Aug 10 12:34:44 2014 +0000
- Revision:
- 10:3fcab08717fc
- Child:
- 11:96146db429de
Added module system.
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 | 10:3fcab08717fc | 4 | TitleModule::TitleModule(Adafruit_RGBLCDShield & in_cLCD) |
| vtraveller | 10:3fcab08717fc | 5 | : Module(in_cLCD) |
| 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 | int TitleModule::setCursor |
| vtraveller | 10:3fcab08717fc | 14 | ( |
| vtraveller | 10:3fcab08717fc | 15 | int in_nIndex, |
| vtraveller | 10:3fcab08717fc | 16 | int in_nCursorX, |
| vtraveller | 10:3fcab08717fc | 17 | int in_nCursorY |
| vtraveller | 10:3fcab08717fc | 18 | ) |
| vtraveller | 10:3fcab08717fc | 19 | { |
| vtraveller | 10:3fcab08717fc | 20 | return -1; |
| vtraveller | 10:3fcab08717fc | 21 | } |
| vtraveller | 10:3fcab08717fc | 22 | |
| vtraveller | 10:3fcab08717fc | 23 | void TitleModule::show() |
| vtraveller | 10:3fcab08717fc | 24 | { |
| vtraveller | 10:3fcab08717fc | 25 | m_cLCD.printf("System Running"); |
| vtraveller | 10:3fcab08717fc | 26 | } |
