ECE 4180 - Final Project Team / Mbed 2 deprecated WalkieTalkie

Dependencies:   mbed 4DGL-uLCD-SE mbed-rtos nRF24L01P

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers HUD.cpp Source File

HUD.cpp

00001 #include "rtos.h"
00002 #include "HUD.h"
00003 
00004 HUD::HUD(PinName tx, PinName rx, PinName reset) {
00005     lcd = new uLCD_4DGL(tx, rx, reset);
00006     
00007     lcd->baudrate(BAUD_3000000);
00008     lcd->cls();
00009     Thread::wait(100);
00010 }
00011 HUD::~HUD() {}
00012 
00013 void HUD::displayChannel(uint8_t channel) {}
00014 void HUD::displayP2T(bool isTalking) {}