Thomas Morris / Mbed OS PROJ324_Final

Fork of ELEC351_Group_T by Plymouth ELEC351 Group T

Revision:
12:536eca338ae8
Parent:
8:0e4481b64353
--- a/NETWORK.cpp	Wed Dec 20 14:43:55 2017 +0000
+++ b/NETWORK.cpp	Wed Dec 20 15:18:00 2017 +0000
@@ -31,7 +31,7 @@
         using namespace std;
         //Block and wait on an incoming connection
         srv.accept(&clt_sock, &clt_addr);
-        printf("accept %s:%d\n", clt_addr.get_ip_address(), clt_addr.get_port());
+        //printf("accept %s:%d\n", clt_addr.get_ip_address(), clt_addr.get_port());
         
         //Uses a C++ string to make it easier to concatinate
         string response;
@@ -43,7 +43,7 @@
         
         //Convert to a C String
         sprintf(ldr_str, "%5.3f", u );
-        printf("LDR: %5.3f\n\r", u);
+        //printf("LDR: %5.3f\n\r", u);
         
         //Build the C++ string response
         response = HTTP_MESSAGE_BODY1;