Added monitoring feature of ESP8266's UART

Dependents:   ESP8266_W7500_Example DualNetworkInterface-Basic

Fork of ESP8266Interface by ESP8266

Revision:
31:fd0eaf273b11
Parent:
30:c035696b9397
Child:
32:cf071dc33972
--- a/ESP8266/ESP8266.h	Wed Apr 29 22:43:03 2015 +0000
+++ b/ESP8266/ESP8266.h	Thu Apr 30 04:53:21 2015 +0000
@@ -94,7 +94,7 @@
     * @param ip A string that contains the IP, no quotes
     * @param port Numerical port number to connect to
     */
-    bool ESP8266::startUDP(char* ip, int port);
+    bool startUDP(char* ip, int port);
 
     /**
     * Close a connection
@@ -111,7 +111,7 @@
 
     /**
     * Return the IP address from host name
-    * @return IP address as a string
+    * @return true on success, false on failure
     */    bool gethostbyname(const char * host, char * ip);
 
     /**