multiplayer pong game for LPC 1768

Dependencies:   mbed MbedJSONValue mbed-rtos Adafruit_ST7735 Adafruit_GFX EthernetInterface DebouncedInterrupt

Revision:
19:58cc5465f647
Parent:
17:32ae1f106002
--- a/network.cpp	Sun Nov 15 21:55:35 2020 +0000
+++ b/network.cpp	Sun Nov 15 22:45:48 2020 +0000
@@ -4,26 +4,26 @@
     int rc; 
     rc = eth->init(); //Use DHCP
     if (rc < 0) {
-        printf("Fatal Error: failed to initialize ethernet via DHCP\n\r");
+        printf("\n\rFatal Error: failed to initialize ethernet via DHCP\n\r");
         return; 
     }
     rc = eth->connect();
     if (rc < 0) {
-        printf("Fatal Error: failed to connect\n\r");
+        printf("\n\rFatal Error: failed to connect\n\r");
         return; 
     }
     rc = sock->init();
     if (rc < 0) {
-        printf("Fatal Error: failed to initialize socket\n\r");
+        printf("\n\rFatal Error: failed to initialize socket\n\r");
         return; 
     }
     rc = nist->set_address(AWS_IP, PORT);
     if (rc < 0) {
-        printf("Fatal Error: failed to set address\n\r");
+        printf("\n\rFatal Error: failed to set address\n\r");
         return; 
     }
     sock->set_blocking(false, 0);
-    printf("Success! Connected to %s, port: %i\n\r", AWS_IP, PORT); 
+    printf("\n\rSuccess! Connected to %s, port: %i\n\r", AWS_IP, PORT); 
 }
 
 void cleanupEthernet(EthernetInterface *eth, UDPSocket *sock) {