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

web-derived/boiler/web-boiler-html.c

Committer:
andrewboyson
Date:
2019-04-27
Revision:
49:9491c966dc60
Parent:
http-derived/boiler/http-boiler-html.c@ 47:229338b3adcb
Child:
51:c7c6ce0d57ad

File content as of revision 49:9491c966dc60:

#include "http.h"
#include "page.h"
#include "page-derived.h"
#include "boiler.h"
#include "ds18b20.h"
#include "web-base.h"

void WebBoilerHtml()
{
    HttpOk("text/html; charset=UTF-8", "no-cache", NULL, NULL);
    PageAddHeader(PageSite, "Boiler", "settings.css", "boiler.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");
    PageAddAjaxInput("Tank 'off' setpoint (deg)", 2, "ajax-tank-set-point",  "tanksetpoint"  );
    PageAddAjaxInput("Tank 'on' temp drop (deg)", 2, "ajax-tank-hysteresis", "tankhysteresis");
    PageAddAjaxInput("Boiler run on (deg)",       2, "ajax-blr-run-on-deg",  "boilerresidual");
    PageAddAjaxInput("Boiler run on (sec)",       2, "ajax-blr-run-on-time", "boilerrunon"   );

    PageAddEnd();
    
}