2015-10-17 14:06:11 +00:00
|
|
|
##############################################
|
|
|
|
# $Id$
|
|
|
|
# Display the measured temperature
|
|
|
|
#
|
|
|
|
# FileLog definition:
|
|
|
|
# define FileLog_device FileLog ./log/device-%Y.log device
|
|
|
|
#
|
|
|
|
# Logfile record example:
|
|
|
|
# 2015-10-17_08:38:08 device temperature: 17.4
|
|
|
|
|
|
|
|
# Attribute 'small' is useful for gnuplot/-scroll only,
|
|
|
|
# if plotsize is less than 800,400
|
|
|
|
#set terminal png transparent small size <SIZE> crop
|
|
|
|
|
|
|
|
set terminal png transparent size <SIZE> crop
|
|
|
|
set output '<OUT>.png'
|
|
|
|
set xdata time
|
|
|
|
set timefmt "%Y-%m-%d_%H:%M:%S"
|
|
|
|
set xlabel " "
|
2015-10-17 17:04:01 +00:00
|
|
|
set ytics
|
2015-10-19 20:06:20 +00:00
|
|
|
set title '<TL>'
|
2015-10-17 17:04:01 +00:00
|
|
|
set grid xtics ytics
|
2015-10-17 14:06:11 +00:00
|
|
|
|
2015-10-17 17:04:01 +00:00
|
|
|
set ylabel "t/C"
|
2015-10-17 14:06:11 +00:00
|
|
|
|
|
|
|
#FileLog 4:temperature:0:
|
|
|
|
|
2015-10-19 20:06:20 +00:00
|
|
|
plot "<IN>" using 1:2 axes x1y1 title 'Temperature' ls l0 lw 1 with lines
|