mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-19 08:53:54 +08:00
9 lines
126 B
Bash
Executable File
9 lines
126 B
Bash
Executable File
#!/bin/bash
|
|
|
|
while true; do
|
|
if ls /dev/ttyUSB* 2> /dev/null; then
|
|
sudo screen /dev/ttyUSB* 115200
|
|
fi
|
|
sleep 0.1
|
|
done
|