2008-12-03 16:49:19 +00:00
|
|
|
############################
|
|
|
|
# Display the power reported by the EM1010
|
|
|
|
# Corresponding FileLog definition:
|
2009-12-22 11:00:54 +00:00
|
|
|
# define <filelogname> FileLog /var/log/fhem/em-%Y.log <emdevname>:CNT:.*
|
2008-12-03 16:49:19 +00:00
|
|
|
|
|
|
|
set terminal png transparent size <SIZE> crop
|
|
|
|
set output '<OUT>.png'
|
|
|
|
set xdata time
|
|
|
|
set timefmt "%Y-%m-%d_%H:%M:%S"
|
|
|
|
set xlabel " "
|
|
|
|
|
2009-12-22 11:00:54 +00:00
|
|
|
set title '<L1>'
|
2008-12-03 16:49:19 +00:00
|
|
|
set ylabel "Power (KW)"
|
|
|
|
set y2label "Power (KW)"
|
|
|
|
set grid
|
|
|
|
set ytics
|
|
|
|
set y2tics
|
|
|
|
set format y "%.1f"
|
|
|
|
set format y2 "%.1f"
|
|
|
|
|
2009-12-22 11:00:54 +00:00
|
|
|
#FileLog 8::0:
|
2008-12-03 16:49:19 +00:00
|
|
|
|
2009-12-22 11:00:54 +00:00
|
|
|
plot "<IN>" using 1:8 title 'Power' with lines
|