From f70b4ddfbb5575d7a94b21d0344e41fb7f7d0acd Mon Sep 17 00:00:00 2001 From: klaus-schauer <> Date: Sun, 18 Oct 2015 16:20:11 +0000 Subject: [PATCH] EnO_liquidLeakage.gplot: new definition git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@9524 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- www/gplot/EnO_liquidLeakage.gplot | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 www/gplot/EnO_liquidLeakage.gplot diff --git a/www/gplot/EnO_liquidLeakage.gplot b/www/gplot/EnO_liquidLeakage.gplot new file mode 100644 index 000000000..423cdc4f9 --- /dev/null +++ b/www/gplot/EnO_liquidLeakage.gplot @@ -0,0 +1,27 @@ +############################################## +# $Id$ +# Display a keycard log +# FileLog definition: +# define FileLog_device FileLog ./log/device-%Y.log device +# +# Logfile record example: +# 2015-10-17_08:38:08 device dry|wet + +set terminal png transparent size crop +set output '.png' +set xdata time +set timefmt "%Y-%m-%d_%H:%M:%S" +set xlabel " " +set ylabel "Liquid Leakage Sensor" +set title '' +set ytics ("wet" 1, "dry" 0) +set y2tics ("wet" 1, "dry" 0) +set yrange [-0.1:1.1] +set y2range [-0.1:1.1] + +#FileLog "1":wet:1: +#FileLog "0":dry:0: + +plot\ + "< awk '/wet/ {print $1, 1;}' " using 1:2 notitle with points,\ + "< awk '/dry/ {print $1, 0;}' " using 1:2 notitle with points