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@106:41ed3ea0bbba, 2021-04-23 (annotated)
- Committer:
- andrewboyson
- Date:
- Fri Apr 23 08:36:42 2021 +0000
- Revision:
- 106:41ed3ea0bbba
- Parent:
- 53:c1bf7d9db507
Not working, crashes.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
andrewboyson | 51:c7c6ce0d57ad | 1 | #include "web-add.h" |
andrewboyson | 53:c1bf7d9db507 | 2 | #include "web-nav-this.h" |
andrewboyson | 51:c7c6ce0d57ad | 3 | |
andrewboyson | 53:c1bf7d9db507 | 4 | void WebNavThis(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 | } |