1
0
Fork 0

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

This commit is contained in:
trotFunky 2020-05-17 14:26:09 +01:00
parent a6d33b2c1a
commit cf6cfe9c39

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