Monitor motorhome leisure battery and provide simple control of habitation

Dependencies:   net lpc1768 crypto clock web fram log

Committer:
andrewboyson
Date:
Thu Jan 14 16:05:55 2021 +0000
Revision:
0:b843d647695c
Creation (mostly a copy of heating at the moment)

Who changed what in which revision?

UserRevisionLine numberNew contents of line
andrewboyson 0:b843d647695c 1 #include "http.h"
andrewboyson 0:b843d647695c 2
andrewboyson 0:b843d647695c 3 //Use http://tomeko.net/online_tools/cpp_text_escape.php to convert from text to c-multiline
andrewboyson 0:b843d647695c 4 //Use http://tomeko.net/online_tools/cpp_text_unescape.php to convert from c-multiline to text
andrewboyson 0:b843d647695c 5
andrewboyson 0:b843d647695c 6 static const char* script =
andrewboyson 0:b843d647695c 7 #include "../../web/common/web-ajax-class.inc"
andrewboyson 0:b843d647695c 8 #include "web-system-script.inc"
andrewboyson 0:b843d647695c 9 ;
andrewboyson 0:b843d647695c 10 const char* WebSystemScriptDate = __DATE__;
andrewboyson 0:b843d647695c 11 const char* WebSystemScriptTime = __TIME__;
andrewboyson 0:b843d647695c 12
andrewboyson 0:b843d647695c 13 void WebSystemScript()
andrewboyson 0:b843d647695c 14 {
andrewboyson 0:b843d647695c 15 HttpOk("application/javascript; charset=UTF-8", "max-age=3600", WebSystemScriptDate, WebSystemScriptTime);
andrewboyson 0:b843d647695c 16 HttpAddText(script);
andrewboyson 0:b843d647695c 17 }