ECE 4180 - Final Project Team / Mbed 2 deprecated WalkieTalkie

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

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?

UserRevisionLine numberNew 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 };