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:
0:b843d647695c
Corrected amp second count in html

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 0:b843d647695c 1 #include "restart.h"
andrewboyson 0:b843d647695c 2 #include "restart-this.h"
andrewboyson 0:b843d647695c 3
andrewboyson 0:b843d647695c 4 const char* RestartThisGetZoneString()
andrewboyson 0:b843d647695c 5 {
andrewboyson 0:b843d647695c 6 switch (RestartGetLastCause())
andrewboyson 0:b843d647695c 7 {
andrewboyson 0:b843d647695c 8 case RESTART_ZONE_NTP_CLIENT: return "NTP" ;
andrewboyson 0:b843d647695c 9 case RESTART_ZONE_VALUES : return "Values" ;
andrewboyson 0:b843d647695c 10 case RESTART_ZONE_ONE_WIRE : return "1-wire" ;
andrewboyson 0:b843d647695c 11 case RESTART_ZONE_DEVICE : return "Device" ;
andrewboyson 0:b843d647695c 12 case RESTART_ZONE_HEATING : return "Heating";
andrewboyson 0:b843d647695c 13 default : return "Unknown";
andrewboyson 0:b843d647695c 14 }
andrewboyson 0:b843d647695c 15 }