This is the mbed code for handling Wifi websocket control from a Python based Tornado Web Server.

Dependencies:   ESP8266Interface HTTPClient Motordriver WebSocketClient mbed

Fork of ESP8266_WebSockets_HelloWorld by ESP8266

Revision:
13:5f2bb0dc134b
Parent:
12:978788c2156c
Child:
14:4ee468971ae0
--- a/main.cpp	Wed Jun 03 18:47:14 2015 +0000
+++ b/main.cpp	Wed Jun 03 19:03:50 2015 +0000
@@ -25,7 +25,7 @@
         
         for(int i=0; i<0x7fffffff; ++i) {
             // string with a message
-            sprintf(str, "%d WebSocket Hello World over Ethernet", i);
+            sprintf(str, "%d WebSocket Hello World over wifi", i);
             ws.send(str);
         
             // clear the buffer and wait a sec...