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.cpp
- Committer:
- Nurchu
- Date:
- 2018-04-18
- Revision:
- 8:0222df74596e
- Parent:
- 7:0ac1f1ca8aa6
File content as of revision 8:0222df74596e:
#include "rtos.h"
#include "HUD.h"
HUD::HUD(PinName tx, PinName rx, PinName reset) {
lcd = new uLCD_4DGL(tx, rx, reset);
lcd->baudrate(BAUD_3000000);
lcd->cls();
Thread::wait(100);
}
HUD::~HUD() {}
void HUD::displayChannel(uint8_t channel) {}
void HUD::displayP2T(bool isTalking) {}