DD2-monitor/serial/essai.sh

30 lines
621 B
Bash
Raw Normal View History

2019-01-05 21:47:51 +11:00
#!/bin/bash
DEVICE="/dev/ttyACM0"
2019-01-06 02:15:48 +11:00
DATAFILE="foo.dat"
2019-01-07 07:17:33 +11:00
TMPFILE="/tmp/dd2data"
2019-01-06 02:15:48 +11:00
IMAGE="graphe.png"
2019-01-29 00:42:33 +11:00
NB_READ=25
2019-01-06 02:15:48 +11:00
2019-01-29 00:42:33 +11:00
./t -vv -n ${NB_READ} -d ${DEVICE} | tee -a ${DATAFILE}
2019-01-06 02:15:48 +11:00
gnuplot << __EOC__
2019-01-15 00:04:17 +11:00
set term png size 3200,512
2019-01-06 02:15:48 +11:00
set output "${IMAGE}"
set grid
2019-01-29 00:42:33 +11:00
set title "Temperature dans le Double Dragon 2"
2019-01-06 02:15:48 +11:00
set xdata time
set timefmt "%s"
2019-01-29 00:42:33 +11:00
set format x "%a, %H:%M:%S"
2019-01-14 08:22:21 +11:00
set yrange [ 5.0 : 30.0]
2019-01-07 07:17:33 +11:00
plot "${DATAFILE}" using 1:2 title " foo" with lines, \
"${DATAFILE}" using 1:3 title " bar" with lines, \
2019-01-06 02:15:48 +11:00
"${DATAFILE}" using 1:4 title "quux" with lines, \
"${DATAFILE}" using 1:5 title "booz" with lines
__EOC__
# display ${IMAGE}
2019-01-05 21:47:51 +11:00