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-this/system/web-system-html.c
- Committer:
- andrewboyson
- Date:
- 2019-05-01
- Revision:
- 53:c1bf7d9db507
- Parent:
- web-derived/system/web-system-html.c@ 52:76254a967391
- Child:
- 63:ae264156d655
File content as of revision 53:c1bf7d9db507:
#include <stdio.h> #include "http.h" #include "web-nav-this.h" #include "web-add.h" void WebSystemHtml() { HttpOk("text/html; charset=UTF-8", "no-cache", NULL, NULL); WebAddHeader("System", "settings.css", "system.js"); WebAddNav(SYSTEM_PAGE); WebAddH1("System"); WebAddH2("TFTP"); WebAddAjaxInput ("Server url", 5, "ajax-server-name", "tftpserver" ); WebAddAjaxInput ("File (strftime)", 11, "ajax-file-name", "tftpfilename" ); WebAddAjaxInput ("Interval (secs) 0=no", 5, "ajax-read-interval", "tftpreadint" ); WebAddAjaxInput ("Records per backup 0=no", 5, "ajax-write-size", "tftpwriteint" ); WebAddAjaxLabelled("Count", "ajax-count" ); WebAddAjaxLabelled("Started", "ajax-start-time" ); WebAddH2("FRAM"); WebAddAjaxLabelled("Used", "ajax-fram-used" ); WebAddH2("Compiler"); WebAddLabelledInt("Version Vvvbbbb", __ARMCC_VERSION); WebAddEnd(); }