From: Bernhard Tittelbach Date: Wed, 9 Oct 2013 00:39:01 +0000 (+0000) Subject: graphs graphs X-Git-Url: https://git.realraum.at/?p=svn42.git;a=commitdiff_plain;h=d9e249eb64a7006e4d8b729f5dce8dc538a3756f graphs graphs --- diff --git a/raspberry-kiosk/kiosk.js b/raspberry-kiosk/kiosk.js index 5011b33..420e5af 100644 --- a/raspberry-kiosk/kiosk.js +++ b/raspberry-kiosk/kiosk.js @@ -193,9 +193,11 @@ function drawLineGraph(targetelem, dataarray, options) { function loadAndDrawSensorData() { $.getJSON("https://realraum.at/shmcache/r3sensors.json", function(data){ drawLineGraph(document.getElementById('tempgooglegraph'), data["TempSensorUpdate"], - {curveType: "function", title: 'Temperature Sensors', vAxis: {maxValue: 29, minValue:5}, colors: ['#FF0000','#CC0033','#660000','#CC3333'], chartArea:{left:32,top:20,width:"88%",height:"83%"}, legend: {position: "none"}} ); + {curveType: "function", title: 'Temperature Sensors', colors: ['#FF0000','#CC0033','#660000','#CC3333'], chartArea:{left:32,top:20,width:"88%",height:"83%"}, legend: {position: "none"}} ); drawLineGraph(document.getElementById('lightgooglegraph'), data["IlluminationSensorUpdate"], {curveType: "none", title: 'Illumination Sensors', vAxis: {maxValue: 1024, minValue:5}, chartArea:{left:32,top:20,width:"88%",height:"83%"}, legend: {position: "none"}} ); + drawLineGraph(document.getElementById('movementgooglegraph'), data["MovementSensorUpdate"], + {curveType: "none", title: 'Movement Sensors', vAxis: {maxValue: 10, minValue:0}, chartArea:{left:32,top:20,width:"88%",height:"83%"}, legend: {position: "none"}} ); }); }