player 1

Dependencies:   4DGL-uLCD-SE PinDetect SparkfunAnalogJoystick mbed-rtos mbed SDFileSystem

Fork of 4180FinalLab by Rishi Bhargava

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers huzzah.h Source File

huzzah.h

00001 #include "uLCD_4DGL.h"
00002 #include "mbed.h"
00003 
00004 class Huzzah
00005 {
00006     public:
00007     Huzzah(char*,char*,Serial*);
00008     void SendCMD();
00009     void getreply();
00010     void config();
00011     void setbaudrate();
00012     void sendwebpage(int,int);
00013     
00014 
00015     private:
00016     //Serial ESP;
00017     char buf[2024];
00018     char snd[1024];
00019  
00020     char *ssid;     
00021     char *pwd;
00022     int _highscore1;
00023     int _highscore2;
00024     
00025     Serial* esp;
00026     
00027 };