1
0
Fork 0

Script pour chopper l'output de la série et les foutre sous tableau

This commit is contained in:
trotFunky 2017-12-12 23:04:56 +01:00
parent ca2bf3eba1
commit 249d3941d6

13
Perso/serialToCSV.sh Executable file
View file

@ -0,0 +1,13 @@
#! /bin/bash
stty -F /dev/ttyACM0 115200 raw -echo -echoe -echok
rm -f ./serialOutput/serialOutput.csv
touch ./serialOutput/serialOutput.csv
while true; do
read line < /dev/ttyACM0
echo $line >> ./serialOutput/serialOutput.csv
done
python3 /home/trotfunky/Programmation/Git/Python/extraction_asserv.py