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:
36:07c7e4d197f2
Parent:
35:bb8a6d1c034c
Child:
41:6413522ed343
--- a/http-derived/boiler/http-boiler-html.c	Thu Mar 07 15:17:26 2019 +0000
+++ b/http-derived/boiler/http-boiler-html.c	Fri Mar 08 18:48:26 2019 +0000
@@ -12,20 +12,20 @@
     PageAddNav(BOILER_PAGE);
     PageAddH1(PageSite, "Boiler");
     
+    PageAddH2("Outputs");
+    PageAddAjaxLed(12, "Boiler call", "ajax-blr-call-toggle");
+    PageAddAjaxLed(12, "Boiler pump", "ajax-blr-pump-toggle");
+    
     PageAddH2("Inputs");
     PageAddAjaxLabelled(11, "Tank",          "ajax-tank-html",    "°C");
     PageAddAjaxLabelled(11, "Boiler output", "ajax-blr-out-html", "°C");
     PageAddAjaxLabelled(11, "Boiler return", "ajax-blr-rtn-html", "°C");
 
     PageAddH2("Parameters");
-    PageAddIntInput("/boiler", 0, "Tank 'off' setpoint (deg)", 12, "tanksetpoint",   2, BoilerGetTankSetPoint());
-    PageAddIntInput("/boiler", 0, "Tank 'on' temp drop (deg)", 12, "tankhysteresis", 2, BoilerGetTankHysteresis());
-    PageAddIntInput("/boiler", 0, "Boiler run on (deg)",       12, "boilerresidual", 2, BoilerGetRunOnResidual());
-    PageAddIntInput("/boiler", 0, "Boiler run on (sec)",       12, "boilerrunon",    2, BoilerGetRunOnTime());
-    
-    PageAddH2("Outputs");
-    PageAddAjaxToggle(12, "Boiler call", "ajax-blr-call-toggle", "htg-chg-blr-call");
-    PageAddAjaxToggle(12, "Boiler pump", "ajax-blr-pump-toggle", "htg-chg-blr-pump");
+    PageAddInputInt(12, "Tank 'off' setpoint (deg)", 2, BoilerGetTankSetPoint(),   "/boiler", "tanksetpoint"  );
+    PageAddInputInt(12, "Tank 'on' temp drop (deg)", 2, BoilerGetTankHysteresis(), "/boiler", "tankhysteresis");
+    PageAddInputInt(12, "Boiler run on (deg)",       2, BoilerGetRunOnResidual(),  "/boiler", "boilerresidual");
+    PageAddInputInt(12, "Boiler run on (sec)",       2, BoilerGetRunOnTime(),      "/boiler", "boilerrunon"   );
 
     PageAddEnd();