Dependencies: net 1-wire lpc1768 crypto clock web fram log
/media/uploads/andrewboyson/heating.sch
/media/uploads/andrewboyson/heating.brd
/media/uploads/andrewboyson/eagle.epf
web-derived/radiator/web-radiator-script.c@51:c7c6ce0d57ad, 2019-04-29 (annotated)
- Committer:
- andrewboyson
- Date:
- Mon Apr 29 14:46:58 2019 +0000
- Revision:
- 51:c7c6ce0d57ad
- Parent:
- 49:9491c966dc60
- Child:
- 52:76254a967391
Updated libraries
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
andrewboyson | 47:229338b3adcb | 1 | #include "http.h" |
andrewboyson | 47:229338b3adcb | 2 | |
andrewboyson | 47:229338b3adcb | 3 | //Use http://tomeko.net/online_tools/cpp_text_escape.php to convert from text to c-multiline |
andrewboyson | 47:229338b3adcb | 4 | //Use http://tomeko.net/online_tools/cpp_text_unescape.php to convert from c-multiline to text |
andrewboyson | 47:229338b3adcb | 5 | |
andrewboyson | 47:229338b3adcb | 6 | static const char* script = |
andrewboyson | 49:9491c966dc60 | 7 | #include "../../web-base/base/web-ajax-class.inc" |
andrewboyson | 49:9491c966dc60 | 8 | #include "../../1-wire/web/web-1wire-class.inc" |
andrewboyson | 49:9491c966dc60 | 9 | #include "web-radiator-script.inc" |
andrewboyson | 47:229338b3adcb | 10 | ; |
andrewboyson | 49:9491c966dc60 | 11 | const char* WebRadiatorScriptDate = __DATE__; |
andrewboyson | 49:9491c966dc60 | 12 | const char* WebRadiatorScriptTime = __TIME__; |
andrewboyson | 47:229338b3adcb | 13 | |
andrewboyson | 49:9491c966dc60 | 14 | void WebRadiatorScript() |
andrewboyson | 47:229338b3adcb | 15 | { |
andrewboyson | 49:9491c966dc60 | 16 | HttpOk("application/javascript; charset=UTF-8", "max-age=3600", WebRadiatorScriptDate, WebRadiatorScriptTime); |
andrewboyson | 47:229338b3adcb | 17 | HttpAddText(script); |
andrewboyson | 47:229338b3adcb | 18 | } |