Provide an easy-to-use way to manipulate ESP8266.

Dependencies:   ArduinoAPI

Dependents:   WeeESP8266_TCPClientMultiple WeeESP8266_TCPClientSingle WeeESP8266_TCPServer WeeESP8266_UDPClientMultiple ... more

Revision:
11:e9bee504024d
Parent:
10:002615561b0b
Child:
13:81f2548212e5
--- a/ESP8266.cpp	Sat Feb 07 06:05:56 2015 +0000
+++ b/ESP8266.cpp	Sat Feb 07 06:12:09 2015 +0000
@@ -19,13 +19,11 @@
  * THE SOFTWARE.
  */
 #include "ESP8266.h"
-#include "log.h"
 
 ESP8266::ESP8266(ArduinoSerial &uart): m_puart(&uart)
 {
     m_puart->begin(9600);
     m_puart->flush();
-    logDebug("Create Instance ok");
 }