DD2-monitor/serial/essai.sh

28 lines
543 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"
NB_READ=50
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-06 21:17:33 +01:00
set term png size 1600,512
2019-01-05 16:15:48 +01:00
set output "${IMAGE}"
set grid
set xdata time
set timefmt "%s"
2019-01-06 21:17:33 +01:00
set format x "%H:%M:%S"
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