correction for negative values

git-svn-id: https://fhem.svn.sourceforge.net/svnroot/fhem/trunk/fhem@2310 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
oskarfessel
2012-12-09 18:08:43 +00:00
parent 1eb47b612c
commit df1757caea
2 changed files with 20 additions and 15 deletions

View File

@@ -20,14 +20,17 @@ set ylabel "Temperature in C"
#FileLog 4:flowTemperature:0:
#FileLog 4:returnTemperatureTarget:0:
#FileLog 4:returnTemperature:0:
#FileLog 4:ambientTemperature:0:int
#FileLog 4:ambientTemperature:0:
#FileLog 4:averageAmbientTemperature:0:
plot \
"< awk '/temperature/{print $1, $4}' <IN>"\
using 1:2 axes x1y2 title 'Vorlauftemperatur' with lines,\
"< awk '/desired/{print $1, $4}' <IN>"\
using 1:2 axes x1y2 title 'Rücklauftemperatur SOLL' with lines,\
"< awk '/humidity/ {print $1, $4+0}' <IN>"\
using 1:2 axes x1y2 title 'Rücklauftemperatur' with lines,\
"< awk '/actuator/ {print $1, $4+0}' <IN>"\
using 1:2 axes x1y2 title 'Außentemperatur' with lines lw2\
"< awk '/flowTemperature/{print $1, $4}' <IN>"\
using 1:2 axes x1y1 title 'Vorlauftemperatur' with lines,\
"< awk '/returnTemperatureTarget/{print $1, $4}' <IN>"\
using 1:2 axes x1y1 title 'Rücklauftemperatur SOLL' with lines,\
"< awk '/returnTemperature/ {print $1, $4+0}' <IN>"\
using 1:2 axes x1y1 title 'Rücklauftemperatur' with lines,\
"< awk '/ambientTemperature/ {print $1, $4+0}' <IN>"\
using 1:2 axes x1y1 title 'Außentemperatur' with lines lw2,\
"< awk '/averageAmbient/ {print $1, $4+0}' <IN>"\
using 1:2 axes x1y1 title 'durchschnittliche Außentemperatur' with lines lw2\