blob: 84db15a00694a3a1b296072dc6319adfebce320c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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>
|