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

Dependencies:   WiConnect mbed

Files at this revision

API Documentation at this revision

Comitter:
dan_ackme
Date:
Tue Aug 26 16:34:32 2014 -0700
Parent:
1:df55971a70cb
Child:
6:b425959b75f0
Commit message:
fixed warning

Changed in this revision

tcp_echo_server.py Show annotated file Show diff for this revision Revisions of this file
--- 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