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: mbed 4DGL-uLCD-SE mbed-rtos nRF24L01P
HUD.h@49:8ae98a6d48c0, 2018-04-30 (annotated)
- Committer:
- drechtmann3
- Date:
- Mon Apr 30 01:14:25 2018 +0000
- Revision:
- 49:8ae98a6d48c0
- Parent:
- 5:69f814a22160
Added comments that will appear on the library
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| Nurchu | 3:a4e2d9e9b294 | 1 | #include "mbed.h" |
| Nurchu | 5:69f814a22160 | 2 | #include "uLCD_4DGL.h" |
| Nurchu | 3:a4e2d9e9b294 | 3 | |
| Nurchu | 3:a4e2d9e9b294 | 4 | class HUD { |
| Nurchu | 5:69f814a22160 | 5 | public: |
| Nurchu | 5:69f814a22160 | 6 | HUD(PinName tx, PinName rx, PinName reset); |
| Nurchu | 5:69f814a22160 | 7 | ~HUD(); |
| Nurchu | 5:69f814a22160 | 8 | |
| Nurchu | 5:69f814a22160 | 9 | void displayChannel(uint8_t channel); |
| Nurchu | 5:69f814a22160 | 10 | void displayP2T(bool isTalking); |
| Nurchu | 5:69f814a22160 | 11 | |
| Nurchu | 5:69f814a22160 | 12 | private: |
| Nurchu | 5:69f814a22160 | 13 | uLCD_4DGL *lcd; |
| Nurchu | 3:a4e2d9e9b294 | 14 | }; |