Central Heating controller using the real time clock, PHY module for internet, 1-wire interface for temperature sensors, a system log and a configuration file

Dependencies:   net 1-wire lpc1768 crypto clock web fram log

/media/uploads/andrewboyson/heating.sch

/media/uploads/andrewboyson/heating.brd

/media/uploads/andrewboyson/eagle.epf

Revision:
91:8b192efd0288
Parent:
53:c1bf7d9db507
Child:
104:46ce1aaf8be7
--- a/web-this/boiler/web-boiler-ajax.c	Thu Jun 04 16:37:59 2020 +0000
+++ b/web-this/boiler/web-boiler-ajax.c	Wed Jun 10 10:08:06 2020 +0000
@@ -21,10 +21,10 @@
     if (BoilerPump           ) nibble |= 2;
     HttpAddNibbleAsHex (nibble); HttpAddChar('\n');
     
-    HttpAddInt16AsHex(BoilerGetTankSetPoint  ()); HttpAddChar('\n');
-    HttpAddInt16AsHex(BoilerGetTankHysteresis()); HttpAddChar('\n');
-    HttpAddInt16AsHex(BoilerGetRunOnResidual ()); HttpAddChar('\n');
-    HttpAddInt16AsHex(BoilerGetRunOnTime     ()); HttpAddChar('\n');
+    HttpAddInt16AsHex(BoilerGetTankSetPoint      ()); HttpAddChar('\n');
+    HttpAddInt16AsHex(BoilerGetTankHysteresis    ()); HttpAddChar('\n');
+    HttpAddInt16AsHex(BoilerGetRunOnResidual16ths()); HttpAddChar('\n');
+    HttpAddInt16AsHex(BoilerGetRunOnTime         ()); HttpAddChar('\n');
 
     
 }