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.
CostumCharacters.h@4:f056a09af806, 2017-05-08 (annotated)
- Committer:
- atomicLogic
- Date:
- Mon May 08 20:01:50 2017 +0000
- Revision:
- 4:f056a09af806
- Parent:
- 0:80ce68cdf568
- Child:
- 5:06eccc902247
it compiles!
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
atomicLogic | 0:80ce68cdf568 | 1 | #pragma once |
atomicLogic | 0:80ce68cdf568 | 2 | #include "TextLCD.h" |
atomicLogic | 0:80ce68cdf568 | 3 | |
atomicLogic | 0:80ce68cdf568 | 4 | class CostumCharacters |
atomicLogic | 0:80ce68cdf568 | 5 | { |
atomicLogic | 0:80ce68cdf568 | 6 | private: |
atomicLogic | 0:80ce68cdf568 | 7 | TextLCD * lcd; |
atomicLogic | 0:80ce68cdf568 | 8 | |
atomicLogic | 0:80ce68cdf568 | 9 | public: |
atomicLogic | 0:80ce68cdf568 | 10 | /* |
atomicLogic | 0:80ce68cdf568 | 11 | const char batteryIcon[][8]; |
atomicLogic | 0:80ce68cdf568 | 12 | |
atomicLogic | 0:80ce68cdf568 | 13 | const char gpsIcon[][8]; |
atomicLogic | 0:80ce68cdf568 | 14 | |
atomicLogic | 0:80ce68cdf568 | 15 | const char loraIcon[][8]; |
atomicLogic | 0:80ce68cdf568 | 16 | |
atomicLogic | 0:80ce68cdf568 | 17 | const char loraStatusIcon[][8]; |
atomicLogic | 0:80ce68cdf568 | 18 | */ |
atomicLogic | 0:80ce68cdf568 | 19 | |
atomicLogic | 0:80ce68cdf568 | 20 | public: |
atomicLogic | 0:80ce68cdf568 | 21 | |
atomicLogic | 0:80ce68cdf568 | 22 | CostumCharacters( TextLCD * lcd ); |
atomicLogic | 0:80ce68cdf568 | 23 | |
atomicLogic | 0:80ce68cdf568 | 24 | void setBatteryIcon( int lvl ); |
atomicLogic | 0:80ce68cdf568 | 25 | void setGpsIcon( bool gpsFix ); |
atomicLogic | 0:80ce68cdf568 | 26 | void setLoraIcon( bool lora ); |
atomicLogic | 0:80ce68cdf568 | 27 | void setLoraStatusIcon( int loraStatus ); |
atomicLogic | 0:80ce68cdf568 | 28 | |
atomicLogic | 0:80ce68cdf568 | 29 | |
atomicLogic | 0:80ce68cdf568 | 30 | |
atomicLogic | 0:80ce68cdf568 | 31 | }; |
atomicLogic | 4:f056a09af806 | 32 |