mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 18:59:33 +00:00
cd7523c23d
git-svn-id: https://svn.fhem.de/fhem/trunk@274 2b470e98-0d58-463d-a4d8-8e2adae1ed80
28 lines
682 B
Plaintext
28 lines
682 B
Plaintext
############################
|
|
# Display the s300th data reported by the CUL
|
|
# Corresponding FileLog definition:
|
|
# define ememlog FileLog /var/log/fhem/s300th-%Y.log s300th.*
|
|
|
|
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 '<TL>'
|
|
set ylabel "Temp (C)"
|
|
set y2label "Temp (C)"
|
|
set grid
|
|
set ytics
|
|
set y2tics
|
|
set format y "%.1f"
|
|
set format y2 "%.1f"
|
|
|
|
#FileLog 4:s300th1:0:
|
|
#FileLog 4:s300th3:0:
|
|
#FileLog 4:s300th5:0:
|
|
|
|
plot "<grep s300th1 <IN>" using 1:8 title '1' with lines,\
|
|
"<grep s300th3 <IN>" using 1:8 title '3' with lines,\
|
|
"<grep s300th5 <IN>" using 1:8 title '5' with lines
|