Wrapper library for ESP8266

Dependents:   ESP8266_LOCALPHANT_KL25Z_UPDATED ESP8266_LocalPhant_KL25Z LAB24_Coordinator DataLoggingUsingESP8266 ... more

Fork of ESP8266 by Antonio Quevedo

Revision:
3:4f24e7e803a1
Parent:
2:77388e8f0697
--- a/ESP8266.h	Sun Dec 28 21:58:49 2014 +0000
+++ b/ESP8266.h	Sat Jun 11 14:05:06 2016 +0000
@@ -23,7 +23,7 @@
 
 void SendCMD(char * s);
 void Reset(void);
-void RcvReply(char * r, int to);
+bool RcvReply(char * r, int to);
 void GetList(char * l);
 void Join(char * id, char * pwd);
 void GetIP(char * ip);
@@ -34,6 +34,9 @@
 void GetConnStatus(char * st);
 void StartServerMode(int port);
 void CloseServerMode(void);
+void setTransparent(void);
+void startTCPConn(char * IP, int port);
+void sendURL(char *URL, char *command);
 
 private:
 Serial comm;