Priunsh Nagru / Mbed 2 deprecated 4180Lab_4

Dependencies:   4DGL-uLCD-SE LSM9DS1_Library_cal SDFileSystem mbed wave_player

Fork of 4180Lab_4 by Rahul Maran

Webpage.h

Committer:
Priunsh_N
Date:
2016-11-02
Revision:
1:bbd83a3a8372
Parent:
Wifi.h@ 0:2b0c527942db
Child:
2:c7779da25bdb

File content as of revision 1:bbd83a3a8372:

#include "mbed.h"

class Webpage {
    public:
        Webpage(PinName tx, PinName rx, PinName rst)
        void ESPsetbaudrate();
        void ESPconfig();
        void SendCMD();
        void getreply(); 
        void setupPage();
    public:   
        int  count,ended,timeout;
        char buf[2024];
        char snd[1024];
        char ssid[32];// = "GTother";     // enter WiFi router ssid inside the quotes
        char pwd [32];// = "GeorgeP@1927"; // enter WiFi router password inside the quotes
    protected:
        Serial esp;
        Timer t;
        DigitalOut reset;
        DigitalOut led1;
        DigitalOut led2;
        DigitalOut led3;
        DigitalOut led4;
}