ported Axeda app. to mbed LPC1114FN28 with WIZ550io

Dependencies:   W5500Interface mbed

Fork of AxedaGo-mbedNXP by Axeda Corp

Revision:
6:1f7647c5691a
Parent:
5:1b8ad120cf29
Child:
7:880cc185d511
--- a/main.cpp	Wed Jun 25 18:49:43 2014 +0000
+++ b/main.cpp	Thu Jun 26 16:58:53 2014 +0000
@@ -76,7 +76,7 @@
             oldPotVal2 = oil_level2;
             printf("Sending Value for well1 %.2f\n\r", oil_level);
             printf("Sending Value for well2 %.2f\n\r", oil_level2);
-            sock.connect("toolbox-stage-connect.axeda.com", 80);
+            sock.connect("toolbox-connect.axeda.com", 80);
  
             snprintf(http_cmd, http_cmd_sz,  "POST /ammp/data/1/%s!%s HTTP/1.1\r\nContent-Type: application/json\r\nContent-Length: 65\r\n\r\n{\"data\":[{\"di\":{\"oil_level\":%.2f, \"oil_level2\":%.2f}}]}\r\n\r\n", MODEL, SERIAL_NUM, oil_level, oil_level2);
             sock.send_all(http_cmd, http_cmd_sz-1);