DD2-monitor/serial/essai.sh

30 lines
607 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-12 17:49:41 +01:00
NB_READ=15000
2019-01-05 16:15:48 +01:00
./t -v -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-13 15:34:27 +01:00
set title "Dans le Double Dragon 2"
2019-01-05 16:15:48 +01:00
set xdata time
set timefmt "%s"
2019-01-06 21:17:33 +01:00
set format x "%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