yet another 18B20 Temperature sensor. variable number of sensors working in parasite mode, serial 16x2 display with diagnostic output and post to a rest web service

Dependencies:   EthernetInterface HTTPClient NTPClient mbed-rtos mbed

Revision:
1:9e88b2508768
Parent:
0:53f05303850a
--- a/collector_proxy.h	Mon Dec 31 12:08:24 2012 +0000
+++ b/collector_proxy.h	Thu Jan 03 18:50:43 2013 +0000
@@ -6,11 +6,11 @@
 
 class CollectorProxy {
 public:
-    CollectorProxy(char *url);
+    CollectorProxy(const char *url);
     int send_measure(char *path_part, int value); // result 1:OK, 0:fail
 
 private:
-    char *base_url;
+    const char *base_url;
 };
 
 #endif