player 1

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

Fork of 4180FinalLab by Rishi Bhargava

Wireless 2 Player Pong game

huzzah.h

Committer:
Mpmart08
Date:
2016-04-29
Revision:
10:b57b3fbf8266
Parent:
9:aa967c554d10

File content as of revision 10:b57b3fbf8266:

#include "uLCD_4DGL.h"
#include "mbed.h"

class Huzzah
{
    public:
    Huzzah(char*,char*,Serial*);
    void SendCMD();
    void getreply();
    void config();
    void setbaudrate();
    void sendwebpage(int,int);
    

    private:
    //Serial ESP;
    char buf[2024];
    char snd[1024];
 
    char *ssid;     
    char *pwd;
    int _highscore1;
    int _highscore2;
    
    Serial* esp;
    
};