webserver_handlePages_heatcontrol.ino 512 B

123456789101112131415
  1. #ifdef FIRMWARE_VARIANT_HEATCONTROL
  2. void httpServerHandlePage_confHeatc()
  3. {
  4. httpServerSendHtmlHeadChunked();
  5. httpServer.sendContent_P(html_js_confpages_start);
  6. httpServer.sendContent_P(html_confHeatc_script);
  7. httpServer.sendContent_P(html_js_confpages_end);
  8. httpServer.sendContent_P(html_head_end);
  9. httpServer.sendContent_P(html_bodytag_jsinit);
  10. httpServerSendHtmlBodyPageheadChunked();
  11. httpServer.sendContent_P(html_confHeatc_body);
  12. httpServerSendHtmlFooterChunked();
  13. }
  14. #endif