Jean-Olivier Lessard
/
Alex_mange_moi
qsdasd
Diff: main.cpp
- Revision:
- 0:1b0dc7de9db7
- Child:
- 1:1c1802ec42a2
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Fri Aug 10 11:15:53 2012 +0000 @@ -0,0 +1,26 @@ +#include "mbed.h" +#include "EthernetInterface.h" +#include "Websocket.h" + + +int main() { + char recv[30]; + + EthernetInterface eth; + eth.init(); //Use DHCP + eth.connect(); + printf("IP Address is %s\n\r", eth.getIPAddress()); + + Websocket ws("ws://sockets.mbed.org:443/ws/demo/rw"); + ws.connect(); + + while (1) { + int res = ws.send("WebSocket Hello World!"); + + if (ws.read(recv)) { + printf("rcv: %s\r\n", recv); + } + + wait(0.1); + } +}