Solar Array and home energy dashboard.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

25 lines
564 B

  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Solar Dashboard</title>
  6. <link rel="stylesheet" type="text/css" href="css/styles.css">
  7. </head>
  8. <body>
  9. <span>Production: <span id="production">Unknown</span>
  10. <script type="text/javascript" src="js/solardash.init.js"></script>
  11. <script type="text/javascript">
  12. // Load testing/prod data first
  13. loadScript("js/solardash." + document.location.protocol.slice(0, -1) + ".js", function(){
  14. loadScript("js/solardash.main.js", function(){
  15. // main init code
  16. });
  17. });
  18. </script>
  19. </body>
  20. </html>