Hallo habe ein Probelm wollte mir diese plot erstellen bekomme es aber nicht zugeordnet es ist dies gplot
############################
# Display the measured temp and the actuator.
# Corresponding FileLog definition:
# define <filelogname> FileLog /var/log/fhem/HM_CC_TC-%Y.log <HM_CC_TC-name>
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 ytics nomirror
set y2tics
#set ytics
set title '<L1>'
set grid xtics y2tics
set y2label "Temperature in C"
set ylabel "Actuator (%)"
#FileLog 4:temperature:0:
#FileLog 4:desired:0:
#FileLog 4:humidity:0:
#FileLog 4:actuator:0:int
plot \
"< awk '/temperature/{print $1, $4}' <IN>"\
using 1:2 axes x1y2 title 'Measured temperature' with lines lw 2,\
"< awk '/desired/{print $1, $4}' <IN>"\
using 1:2 axes x1y2 title 'Desired temperature' with steps,\
"< awk '/humidity/ {print $1, $4+0}' <IN>"\
using 1:2 axes x1y1 title 'Humidity (%)' with lines,\
"< awk '/actuator/ {print $1, $4+0}' <IN>"\
using 1:2 axes x1y1 title 'Actuator (%)' with lines\
und meine tc erstellen eine text log ?? wie mache ich nun weiter das ich ein log in diese plot bekomme
Anfaenger sollten eigene Plots mit dem Plot-Editor erstellen: http://forum.fhem.de/index.php/topic,11275.msg75594.html#msg75594
Eine aeltere Beschreibung (ohne den Plot-Editor) ist in der Wiki zu lesen: http://www.fhemwiki.de/wiki/Creating_Plots
Hallo,
Zitatwie mache ich nun weiter das ich ein log in diese plot bekomme
Garnicht.
Du kannst aus einem Log einen Plot machen aber umgekehrt wird schwer.
Grüße