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: 4DGL-uLCD-SE mbed
src/LCDControl.h@11:419e5d18d42b, 2015-10-19 (annotated)
- Committer:
- kevinrhyne
- Date:
- Mon Oct 19 20:23:37 2015 +0000
- Revision:
- 11:419e5d18d42b
- Parent:
- 10:99392075e1d0
- Child:
- 12:ef988c7fe8a4
reporter work;
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
kevinrhyne | 11:419e5d18d42b | 1 | #ifndef LCDCONTROL_H |
kevinrhyne | 11:419e5d18d42b | 2 | #define LCDCONTROL_H |
kevinrhyne | 11:419e5d18d42b | 3 | |
kevinrhyne | 10:99392075e1d0 | 4 | #include "mbed.h" |
kevinrhyne | 10:99392075e1d0 | 5 | #include "uLCD_4DGL.h" |
kevinrhyne | 10:99392075e1d0 | 6 | |
kevinrhyne | 10:99392075e1d0 | 7 | class LCDControl{ |
kevinrhyne | 10:99392075e1d0 | 8 | |
kevinrhyne | 10:99392075e1d0 | 9 | // serial tx, serial rx, reset pin; |
kevinrhyne | 10:99392075e1d0 | 10 | int strength; |
kevinrhyne | 10:99392075e1d0 | 11 | bool mode; |
kevinrhyne | 10:99392075e1d0 | 12 | |
kevinrhyne | 10:99392075e1d0 | 13 | public: |
kevinrhyne | 10:99392075e1d0 | 14 | |
kevinrhyne | 10:99392075e1d0 | 15 | uLCD_4DGL *uLCD; |
kevinrhyne | 10:99392075e1d0 | 16 | |
kevinrhyne | 10:99392075e1d0 | 17 | LCDControl(); |
kevinrhyne | 10:99392075e1d0 | 18 | void update(int, bool); |
kevinrhyne | 10:99392075e1d0 | 19 | void printStrength(int); |
kevinrhyne | 10:99392075e1d0 | 20 | |
kevinrhyne | 10:99392075e1d0 | 21 | }; |
kevinrhyne | 10:99392075e1d0 | 22 | |
kevinrhyne | 11:419e5d18d42b | 23 | #endif |