2008-07-28 12:33:29 +00:00
|
|
|
############################
|
|
|
|
# Display the on and off values for a single FS20 device
|
2007-12-03 10:34:34 +00:00
|
|
|
# FileLog definition:
|
2008-07-28 12:33:29 +00:00
|
|
|
# define fs20log FileLog /var/log/fhem/fs20dev-%Y-%U.log fs20dev
|
|
|
|
|
2008-07-11 07:35:12 +00:00
|
|
|
set terminal png transparent size <SIZE> crop
|
2007-12-03 10:34:34 +00:00
|
|
|
set output '<OUT>.png'
|
|
|
|
set xdata time
|
|
|
|
set timefmt "%Y-%m-%d_%H:%M:%S"
|
|
|
|
set xlabel " "
|
|
|
|
set ytics nomirror
|
|
|
|
set title '<TL>'
|
|
|
|
set grid
|
|
|
|
set yrange [-0.2:1.2]
|
|
|
|
|
2008-07-11 07:35:12 +00:00
|
|
|
#FileLog "1"::0:
|
2008-06-12 07:22:59 +00:00
|
|
|
|
2007-12-03 10:34:34 +00:00
|
|
|
plot "< awk '{print $1, $3==\"on\"? 1 : 0; }' <IN>"\
|
|
|
|
using 1:2 title 'On/Off' with impulses
|