Monitor motorhome leisure battery and provide simple control of habitation

Dependencies:   net lpc1768 crypto clock web fram log

Committer:
andrewboyson
Date:
Fri Jun 10 18:32:21 2022 +0000
Revision:
10:a97a7cb7aa82
Parent:
9:d957af50fdc2
Corrected amp second count in html

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 0:b843d647695c 1 #include "web-add.h"
andrewboyson 0:b843d647695c 2 #include "web-nav-this.h"
andrewboyson 0:b843d647695c 3
andrewboyson 0:b843d647695c 4 void WebNavThis(int page)
andrewboyson 0:b843d647695c 5 {
andrewboyson 0:b843d647695c 6 WebAddNavItem(page == HOME_PAGE, "/", "Home" );
andrewboyson 9:d957af50fdc2 7 WebAddNavItem(page == BATTERY_PAGE, "/battery", "Battery" );
andrewboyson 0:b843d647695c 8 WebAddNavItem(page == SYSTEM_PAGE, "/system", "System" );
andrewboyson 0:b843d647695c 9 }