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

Committer:
andrewboyson
Date:
Wed May 01 07:17:24 2019 +0000
Revision:
52:76254a967391
Parent:
web-derived/page/web-nav-derived.c@51:c7c6ce0d57ad
Updated web library

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 51:c7c6ce0d57ad 1 #include "web-add.h"
andrewboyson 52:76254a967391 2 #include "web-nav-derived.h"
andrewboyson 51:c7c6ce0d57ad 3
andrewboyson 51:c7c6ce0d57ad 4 void WebNavDerived(int page)
andrewboyson 51:c7c6ce0d57ad 5 {
andrewboyson 51:c7c6ce0d57ad 6 WebAddNavItem(page == HOME_PAGE, "/", "Home" );
andrewboyson 51:c7c6ce0d57ad 7 WebAddNavItem(page == PROGRAM_PAGE, "/program", "Program" );
andrewboyson 51:c7c6ce0d57ad 8 WebAddNavItem(page == RADIATOR_PAGE, "/radiator", "Radiator");
andrewboyson 51:c7c6ce0d57ad 9 WebAddNavItem(page == BOILER_PAGE, "/boiler", "Boiler" );
andrewboyson 51:c7c6ce0d57ad 10 WebAddNavItem(page == SYSTEM_PAGE, "/system", "System" );
andrewboyson 51:c7c6ce0d57ad 11 WebAddNavItem(page == ONE_WIRE_PAGE, "/1wire", "1-Wire" );
andrewboyson 51:c7c6ce0d57ad 12 }