13 lines
307 B
Bash
13 lines
307 B
Bash
|
#! /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
|