Monitor for central heating system (e.g. 2zones+hw) Supports up to 15 temp probes (DS18B20/DS18S20) 3 valve monitors Gas pulse meter recording Use stand-alone or with nodeEnergyServer See http://robdobson.com/2015/09/central-heating-monitor

Dependencies:   EthernetInterfacePlusHostname NTPClient Onewire RdWebServer SDFileSystem-RTOS mbed-rtos mbed-src

Revision:
10:72eb217def1f
Parent:
9:0e103c2f869a
Child:
13:9ec0e11cf3c1
--- a/RdDS18B20.cpp	Sun Feb 22 11:57:12 2015 +0000
+++ b/RdDS18B20.cpp	Sun Feb 22 20:23:43 2015 +0000
@@ -78,7 +78,7 @@
 {
     if ((addrIdx >= _numValidAddresses) || (addrIdx < 0))
         return "";
-    sprintf(_addrStr, "%02x %02x %02x %02x %02x %02x %02x %02x", 
+    sprintf(_addrStr, "%02x%02x%02x%02x%02x%02x%02x%02x", 
         _addrTable[addrIdx][0], _addrTable[addrIdx][1], _addrTable[addrIdx][2], 
         _addrTable[addrIdx][3], _addrTable[addrIdx][4], _addrTable[addrIdx][5], 
         _addrTable[addrIdx][6], _addrTable[addrIdx][7]);