| 1234567891011121314151617181920212223 |
- # Created by FHEM/98_SVG.pm, 2018-11-26 18:22:09
- set terminal png transparent size <SIZE> crop
- set output '<OUT>.png'
- set xdata time
- set timefmt "%Y-%m-%d_%H:%M:%S"
- set xlabel " "
- set title '<TL>'
- set ytics
- set y2tics
- set grid
- set ylabel "Leistung[W]"
- set y2label "Verbrauch[kWh]"
- set yrange [0:25]
- set y2range [0:0.4]
- #DBLogging st.HeatedWaterPump:ENERGY_Power
- #DBLogging st.HeatedWaterPump:ENERGY_Today
- #DBLogging st.HeatedWaterPump:ENERGY_Yesterday
- plot "<IN>" using 1:2 axes x1y1 title 'Leistung' ls l0 lw 1 with lines,\
- "<IN>" using 1:2 axes x1y2 title 'Verbrauch' ls l1fill lw 1 with lines,\
- "<IN>" using 1:2 axes x1y2 title 'Vortag' ls l2 lw 1 with lines
|