TCP echo client using the WiConnect library and mbed TCP Socket API.

Dependencies:   WiConnect mbed

Revision:
5:146aa620d96e
Parent:
1:df55971a70cb
--- a/tcp_echo_server.py	Sat Aug 23 13:09:29 2014 +0000
+++ b/tcp_echo_server.py	Tue Aug 26 16:34:32 2014 -0700
@@ -11,4 +11,4 @@
         data = conn.recv(1024)
         if not data: break
         conn.sendall(data)
-    conn.close()
+    conn.close()
\ No newline at end of file