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

http-derived/boiler/http-boiler-html.c

Committer:
andrewboyson
Date:
2019-03-25
Revision:
41:6413522ed343
Parent:
36:07c7e4d197f2
Child:
47:229338b3adcb

File content as of revision 41:6413522ed343:

#include "http.h"
#include "page.h"
#include "page-derived.h"
#include "boiler.h"
#include "ds18b20.h"
#include "http-server.h"

void HttpBoilerHtml()
{
    HttpOk("text/html; charset=UTF-8", "no-cache", NULL, NULL);
    PageAddHeader(PageSite, "Boiler", "settings.css", "heating.js");
    PageAddNav(BOILER_PAGE);
    PageAddH1(PageSite, "Boiler");
    
    PageAddH2("Outputs");
    PageAddAjaxLed("Boiler call", "ajax-blr-call-toggle");
    PageAddAjaxLed("Boiler pump", "ajax-blr-pump-toggle");
    
    PageAddH2("Inputs");
    PageAddAjaxLabelledSuffix("Tank",          "ajax-tank-html",    "°C");
    PageAddAjaxLabelledSuffix("Boiler output", "ajax-blr-out-html", "°C");
    PageAddAjaxLabelledSuffix("Boiler return", "ajax-blr-rtn-html", "°C");

    PageAddH2("Parameters");
    PageAddInputInt("Tank 'off' setpoint (deg)", 2, BoilerGetTankSetPoint(),   "/boiler", "tanksetpoint"  );
    PageAddInputInt("Tank 'on' temp drop (deg)", 2, BoilerGetTankHysteresis(), "/boiler", "tankhysteresis");
    PageAddInputInt("Boiler run on (deg)",       2, BoilerGetRunOnResidual(),  "/boiler", "boilerresidual");
    PageAddInputInt("Boiler run on (sec)",       2, BoilerGetRunOnTime(),      "/boiler", "boilerrunon"   );

    PageAddEnd();
    
}