Simple usage of wifi module ESP826601.

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers ESP826601.h Source File

ESP826601.h

00001 #ifndef ESP826601_H
00002 #define ESP826601_H
00003 
00004 #include "mbed.h"
00005 
00006 void ESP_interrupt();
00007 
00008 class Esp{
00009     public: 
00010         Esp(void);
00011         void init(void);
00012         void waitResponse(void);
00013         void waitConnection(void);
00014         void closeConnection(void);
00015         void send(char* text);
00016         void printToPC(char* text);
00017         void printToPC(char c);
00018 };
00019 
00020 #endif