DD2-monitor/serial/essai.sh

30 lines
623 B
Bash
Raw Normal View History

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