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