Updated directories

Dependencies:   EthernetInterface LM75B MMA7660 WebSocketClient mbed-rtos mbed

Fork of app-board-Ethernet-Websocket by jim hamblen

Uses updated libraries, working as of 28/4/14.

Revision:
1:1ca9c7ae7e0b
Parent:
0:11bb5faeb547
Child:
2:1fae595547d5
--- a/main.cpp	Fri Oct 26 09:11:00 2012 +0000
+++ b/main.cpp	Fri Oct 26 09:27:16 2012 +0000
@@ -17,12 +17,13 @@
     eth.init(); //Use DHCP
     eth.connect();
     printf("IP Address is %s\n\r", eth.getIPAddress());
- 
-    Websocket ws("ws://sockets.mbed.org/ws/demo/wo");
+    
+    Websocket ws("ws://sockets.mbed.org/ws/sensors/wo");
+    // visit http://tools.mbed.org/iot/ to see the realtime graph
     ws.connect();
  
     while (1) {
-        sprintf(json_str, "{\"id\":\"app_board_acc\",\"ax\":\"%d\",\"ay\":\"%d\",\"az\":\"%d\"}", (int)(MMA.x()*200), (int)(MMA.y()*200), (int)(MMA.z()*200));
+        sprintf(json_str, "{\"id\":\"mbed-app-board\",\"ax\":\"%d\",\"ay\":\"%d\",\"az\":\"%d\"}", (int)(MMA.x()*200), (int)(MMA.y()*200), (int)(MMA.z()*200));
         ws.send(json_str);
         wait(0.2);
     }