Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: 1-wire clock crypto fram log lpc1768 net web wiz mbed
Diff: web-this/web-nav-this.c
- Revision:
- 0:22b158d3c76f
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web-this/web-nav-this.c Mon May 10 10:23:48 2021 +0000 @@ -0,0 +1,13 @@ +#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" ); + WebAddNavItem(page == WIZ_PAGE, "/wiz", "Wiz" ); +}