1
0
Fork 0

Script qui allume bien python après parce que c'est quand même foutrement plus pratique

This commit is contained in:
trotFunky 2017-12-13 17:05:03 +01:00
parent 249d3941d6
commit 72ade7d689

View file

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