blob: 754fd6253661f0f551ed363efb240767b7e7ae78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<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(){
var from = Math.round(new Date().getTime()/1000) - 86400;
var to = Math.round(new Date().getTime()/1000);
$.getJSON("/sensor/heizkreisregler9.solarDaten.tempKollektor/"+from+"/"+to,
function(data) {
$.plot($("#ebusgraph"), [data], { xaxis: { mode: "time"}});
});
});
</script>
</head>
<body>
<h1>TEST</h1>
<div id="ebusgraph"></div>
</body>
</html>
|