Reorg - Part 4
git-svn-id: https://fhem.svn.sourceforge.net/svnroot/fhem/trunk/fhem@1865 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
23
www/gplot/fs20.gplot
Normal file
23
www/gplot/fs20.gplot
Normal file
@@ -0,0 +1,23 @@
|
||||
############################
|
||||
# Display the on and off values off an FS20 device
|
||||
# Corresponding FileLog definition:
|
||||
# define fs20log FileLog /var/log/fhem/fs20dev-%Y-%U.log fs20dev
|
||||
|
||||
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 ("Off" 0, "On" 1)
|
||||
set y2tics ("Off" 0, "On" 1)
|
||||
set yrange [-0.1:1.1]
|
||||
set y2range [-0.1:1.1]
|
||||
set ylabel "Status"
|
||||
set y2label "Status"
|
||||
|
||||
#FileLog 3::0:$fld[2]=~"on"?1:0
|
||||
|
||||
plot "< awk '{print $1, $3~/on/? 1 : 0; }' <IN>"\
|
||||
using 1:2 notitle with steps
|
||||
Reference in New Issue
Block a user