nopenpilot/tools/serial/connect.sh

9 lines
128 B
Bash
Raw Permalink Normal View History

2021-08-18 16:00:51 -06:00
#!/bin/bash
while true; do
if ls /dev/ttyUSB* 2> /dev/null; then
sudo screen /dev/ttyUSB* 115200
fi
2021-09-22 13:31:22 -06:00
sleep 0.005
2021-08-18 16:00:51 -06:00
done