Controls the central heating system and the lights.

Dependencies:   1-wire clock crypto fram log lpc1768 net web wiz mbed

Revision:
0:22b158d3c76f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/web-this/system/web-system-script.c	Mon May 10 10:23:48 2021 +0000
@@ -0,0 +1,17 @@
+#include "http.h"
+
+//Use http://tomeko.net/online_tools/cpp_text_escape.php   to convert from text to c-multiline
+//Use http://tomeko.net/online_tools/cpp_text_unescape.php to convert from c-multiline to text
+
+static const char* script =
+#include "../../web/common/web-ajax-class.inc"
+#include "web-system-script.inc"
+;
+const char* WebSystemScriptDate = __DATE__;
+const char* WebSystemScriptTime = __TIME__;
+
+void WebSystemScript()
+{
+    HttpOk("application/javascript; charset=UTF-8", "max-age=3600", WebSystemScriptDate, WebSystemScriptTime);
+    HttpAddText(script);
+}