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:
rudolfkoenig
2012-09-18 10:27:27 +00:00
parent bbb68e5279
commit 8b59bd03aa
147 changed files with 0 additions and 0 deletions

23
www/gplot/fs20.gplot Normal file
View 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