2007-05-27 17:24:52 +00:00
|
|
|
############################
|
|
|
|
# Display the power reported by the EM1010
|
2008-07-28 12:33:29 +00:00
|
|
|
# Corresponding FileLog definition:
|
|
|
|
# define ememlog FileLog /var/log/fhem/emem-%Y.log emem:power.*
|
2007-05-27 17:24:52 +00:00
|
|
|
|
2022-03-07 08:45:37 +00:00
|
|
|
set readonly
|
2008-07-11 07:35:12 +00:00
|
|
|
set terminal png transparent size <SIZE> crop
|
2007-05-27 17:24:52 +00:00
|
|
|
set output '<OUT>.png'
|
|
|
|
set xdata time
|
|
|
|
set timefmt "%Y-%m-%d_%H:%M:%S"
|
|
|
|
set xlabel " "
|
|
|
|
|
2007-10-03 16:35:37 +00:00
|
|
|
set title '<TL>'
|
2008-05-09 13:58:10 +00:00
|
|
|
set ylabel "Power (KW)"
|
|
|
|
set y2label "Power (KW)"
|
2007-05-27 17:24:52 +00:00
|
|
|
set grid
|
2008-05-09 13:58:10 +00:00
|
|
|
set ytics
|
|
|
|
set y2tics
|
|
|
|
set format y "%.1f"
|
|
|
|
set format y2 "%.1f"
|
2007-05-27 17:24:52 +00:00
|
|
|
|
2008-07-11 07:35:12 +00:00
|
|
|
#FileLog 4::0:
|
2008-06-12 07:22:59 +00:00
|
|
|
|
2008-05-09 13:58:10 +00:00
|
|
|
plot "<IN>" using 1:4 notitle with lines
|