2008-07-28 12:33:29 +00:00
|
|
|
############################
|
2007-03-27 14:50:04 +00:00
|
|
|
# Display the on and off values off an FS20 device
|
2008-07-28 12:33:29 +00:00
|
|
|
# Corresponding FileLog definition:
|
|
|
|
# define fs20log FileLog /var/log/fhem/fs20dev-%Y-%U.log fs20dev
|
|
|
|
|
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-03-27 14:50:04 +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 ytics ("Off" 0, "On" 1)
|
|
|
|
set y2tics ("Off" 0, "On" 1)
|
2007-12-03 10:34:34 +00:00
|
|
|
set yrange [-0.1:1.1]
|
2008-05-09 13:58:10 +00:00
|
|
|
set y2range [-0.1:1.1]
|
2010-10-27 12:53:21 +00:00
|
|
|
set ylabel "Status"
|
|
|
|
set y2label "Status"
|
2007-03-27 14:50:04 +00:00
|
|
|
|
2010-10-27 12:53:21 +00:00
|
|
|
#FileLog 3::0:$fld[2]=~"on"?1:0
|
2008-06-12 07:22:59 +00:00
|
|
|
|
2010-10-27 12:53:21 +00:00
|
|
|
plot "< awk '{print $1, $3~/on/? 1 : 0; }' <IN>"\
|
2008-05-09 13:58:10 +00:00
|
|
|
using 1:2 notitle with steps
|