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.h Source File

HUD.h

00001 #include "mbed.h"
00002 #include "uLCD_4DGL.h"
00003 
00004 class HUD {
00005 public:
00006     HUD(PinName tx, PinName rx, PinName reset);
00007     ~HUD();
00008     
00009     void displayChannel(uint8_t channel);
00010     void displayP2T(bool isTalking);
00011     
00012 private:
00013     uLCD_4DGL *lcd;
00014 };