Exosite Collaberation ALS int .

Dependencies:   MbedJSONValue mbed mtsas

Fork of UUU_MultiTech_Dragonfly_Sprint_SF by Paul Jaeger

Revision:
10:1c44f9375dd2
Parent:
9:6475e1b83491
Child:
11:d2ac3fa6f2d3
--- a/main.cpp	Fri Apr 15 22:29:23 2016 +0000
+++ b/main.cpp	Tue Apr 19 14:15:07 2016 +0000
@@ -404,8 +404,11 @@
                 int sensor_data = RPR0521_ALS[0];
                 logDebug("posting sensor data");
                 logDebug("%d",sensor_data);
+                
+                std::string sensor_data_str = patch::to_string(sensor_data);
+                logDebug("Sensor data string: %s",sensor_data_str.c_str());
 
-                http_tx.put("ALS", patch::to_string(sensor_data).c_str());
+                http_tx.put("ALS", sensor_data_str.c_str());
 
                 // Make HTTP POST request
                 result = http.post(EXOSITE_URL, http_tx, &http_rx);