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/web-nav-this.c
- Committer:
- andrewboyson
- Date:
- 2021-04-23
- Revision:
- 106:41ed3ea0bbba
- Parent:
- 53:c1bf7d9db507
File content as of revision 106:41ed3ea0bbba:
#include "web-add.h" #include "web-nav-this.h" void WebNavThis(int page) { WebAddNavItem(page == HOME_PAGE, "/", "Home" ); WebAddNavItem(page == PROGRAM_PAGE, "/program", "Program" ); WebAddNavItem(page == RADIATOR_PAGE, "/radiator", "Radiator"); WebAddNavItem(page == BOILER_PAGE, "/boiler", "Boiler" ); WebAddNavItem(page == SYSTEM_PAGE, "/system", "System" ); WebAddNavItem(page == ONE_WIRE_PAGE, "/1wire", "1-Wire" ); }