mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 18:59:33 +00:00
d5b4420c33
git-svn-id: https://svn.fhem.de/fhem/trunk@34 2b470e98-0d58-463d-a4d8-8e2adae1ed80
20 lines
509 B
Plaintext
20 lines
509 B
Plaintext
#
|
|
# Display the Temperature and the humidity values of a KS300.
|
|
# FileLog definition:
|
|
# define FileLog ks300log ks300:.*H:.* /var/log/ks300-%Y-%U.log
|
|
#
|
|
set terminal png
|
|
set output '<OUT>.png'
|
|
set xdata time
|
|
set timefmt "%Y-%m-%d_%H:%M:%S"
|
|
set xlabel " "
|
|
set ytics nomirror
|
|
set y2tics
|
|
set title '<IN>'
|
|
set grid
|
|
|
|
set ylabel "Temperature (Celsius)"
|
|
set y2label "Humidity (%)"
|
|
plot "<IN>" using 1:4 axes x1y1 title 'Temperature' with lines,\
|
|
"<IN>" using 1:6 axes x1y2 title 'Rel. Humidity (%)' with lines
|