diff options
Diffstat (limited to 'ebus/webapp/static/index.html')
-rw-r--r-- | ebus/webapp/static/index.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ebus/webapp/static/index.html b/ebus/webapp/static/index.html new file mode 100644 index 0000000..84db15a --- /dev/null +++ b/ebus/webapp/static/index.html @@ -0,0 +1,19 @@ +<html> + <head> + <link rel="stylesheet" type="text/css" href="/static/main.css" /> + <script src="/static/jquery-1.6.2.min.js"></script> + <script src="/static/jquery.flot.js"></script> + <script> + $(document).ready(function(){ + $.getJSON("/sensor/heizkreisregler9.solarDaten.tempKollektor/1/1", + function(data) { + $.plot($("#ebusgraph"), [data], { xaxis: { mode: "time"}}); + }); + }); + </script> + </head> + <body> + <h1>ULTIMATE CONTROL PANEL</h1> + <div id="ebusgraph"></div> + </body> +</html> |