Changeset 53aed1c for de.wigbels.ruby/hothotread
- Timestamp:
- 11/30/2014 09:21:35 PM (10 years ago)
- Branches:
- master
- Children:
- cf9f2dc
- Parents:
- 5ce93a3
- Location:
- de.wigbels.ruby/hothotread
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
de.wigbels.ruby/hothotread/draw_graphs.sh
r5ce93a3 r53aed1c 1 #!/bin/bash 1 #!/bin/bash 2 #DEF:temps9=../hotcoldrain/weather.rrd:temps9:AVERAGE \ 3 #LINE1:temps9#4e9a06:"Temperatur aussen\n" \ 2 4 3 rrdtool graph gastest.png -w 800 -h 500 -s 'now - 1 day' -e 'now' DEF:gas=energy.rrd:gas:AVERAGE LINE2:gas#204a87:"Gas Liter" 5 rrdtool graph web/gas_1tag.png \ 6 -w 800 -h 500 \ 7 -s 'now - 1 day' -e 'now' \ 8 --title "Gasverbrauch im Tagesverlauf" \ 9 --font TITLE:12 --vertical-label="Liter/Stunde" \ 10 DEF:gas=gas.rrd:gas:AVERAGE \ 11 CDEF:gash=gas,120,* \ 12 VDEF:gastotal=gas,TOTAL \ 13 GPRINT:gastotal:"Total %6.0lf m3 Gas" \ 14 LINE2:gash#c17d11:"Gasverbrauch" 15 16 rrdtool graph web/gas_1woche.png \ 17 -w 800 -h 500 \ 18 -s 'now - 1 week' -e 'now' \ 19 --title "Gasverbrauch im Wochenverlauf" \ 20 --font TITLE:12 --vertical-label="Liter/Tag" \ 21 DEF:gas=gas.rrd:gas:AVERAGE \ 22 CDEF:gasd=gas,2880,* \ 23 VDEF:gastotal=gas,TOTAL \ 24 GPRINT:gastotal:"Total %6.0lf m3 Gas" \ 25 LINE2:gasd#c17d11:"Gasverbrauch/Tag" 26 27 rrdtool graph web/gas_1monat.png \ 28 -w 800 -h 500 \ 29 -s 'now - 1 month' -e 'now' \ 30 --title "Gasverbrauch im Monatsverlauf" \ 31 --font TITLE:12 --vertical-label="Liter/Tag" \ 32 DEF:gas=gas.rrd:gas:AVERAGE \ 33 CDEF:gasd=gas,2880,* \ 34 VDEF:gastotal=gas,TOTAL \ 35 GPRINT:gastotal:"Total %6.0lf m3 Gas" \ 36 LINE2:gasd#c17d11:"Gasverbrauch/Tag" 37 -
de.wigbels.ruby/hothotread/hothotpiper.rb
r5ce93a3 r53aed1c 24 24 include PiPiper 25 25 26 @mypath = File.expand_path(File.dirname(__FILE__))26 $mypath = File.expand_path(File.dirname(__FILE__)) 27 27 28 28 … … 30 30 puts('added 10 liter of gas to sensor-database') 31 31 Net::HTTP.get(URI.parse('http://www.wigbels.net/cgi-bin/hhw.rb?sensorid=1&data=10')) 32 system("rrdtool update #{ @mypath}/energy.rrd N:10:U:U")32 system("rrdtool update #{$mypath}/gas.rrd N:10") 33 33 end 34 34
Note:
See TracChangeset
for help on using the changeset viewer.