Hallo Leute,
ich habe mir ein Plot von meiner Heizung (Luxtronik 2) erzeugt, damit ich die Schaltzeiten der Wärme-und Zirkulationonspumpen überwachen kann.
Soweit funktioniert alles super, jedoch bekomme ich im Logfile dauernd eine "PERL WARNINGS":
2014.10.12 12:30:20 1: PERL WARNING: Use of uninitialized value $fld[4] in pattern match (m//) at (eval 14676) line 1, <GEN526> line 1467.
2014.10.12 12:30:20 1: PERL WARNING: Use of uninitialized value $fld[4] in pattern match (m//) at (eval 14679) line 1, <GEN526> line 1480.
2014.10.12 12:32:06 1: PERL WARNING: Use of uninitialized value $fld[4] in pattern match (m//) at (eval 15478) line 1, <GEN534> line 1467.
2014.10.12 12:32:06 1: PERL WARNING: Use of uninitialized value $fld[4] in pattern match (m//) at (eval 15481) line 1, <GEN534> line 1480.
2014.10.12 12:33:01 1: PERL WARNING: Use of uninitialized value $fld[4] in pattern match (m//) at (eval 16280) line 1, <GEN538> line 1467.
2014.10.12 12:33:01 1: PERL WARNING: Use of uninitialized value $fld[4] in pattern match (m//) at (eval 16283) line 1, <GEN538> line 1480.
Hier noch meine Plotdatei:
# Created by FHEM/98_SVG.pm, 2014-10-11 17:22:41
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 'Zirkulationspumpe'
set ytics ("Aus" 0, "An" 1)
set y2tics
set grid
set ylabel "Status"
set y2label "Durchfluß L/h"
set yrange [0.0:1.1]
#FileLog 4:Heizung.flowRate\x3a:0:
#FileLog 4:Heizung.hotWaterSwitchingValve\x3a:0:$fld[3]=~"on"?1:0
#FileLog 4:Heizung.hotWaterCircPumpExtern\x3a:0:$fld[3]=~"on"?1:0
#FileLog 4:Heizung.opStateHeatPump1\x3a:0:$fld[4]=~"laeuft"?1:0
plot "<IN>" using 1:2 axes x1y2 title 'Heizungszirkulation' ls l0 lw 1 with lines,\
"<IN>" using 1:2 axes x1y1 title 'Warmwasserumschaltung' ls l2fill lw 1 with steps,\
"<IN>" using 1:2 axes x1y1 title 'Warmwasserzirkulation' ls l1fill_stripe lw 1 with steps,\
"<IN>" using 1:2 axes x1y1 title 'Wärmepumpe' ls l6fill lw 1 with steps
Hat jemand eine Idee, woran das liegt?
Danke und Gruß
Bernd