Clean it up
This commit is contained in:
parent
4b0074d498
commit
87bd807c26
1 changed files with 2 additions and 3 deletions
|
@ -12,14 +12,13 @@ try:
|
||||||
# Then, just remove "/dev/", and the number, from the port, and type it into the variable `port`
|
# Then, just remove "/dev/", and the number, from the port, and type it into the variable `port`
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
arduino_connected = False
|
|
||||||
port = 'ttyACM'
|
port = 'ttyACM'
|
||||||
while not arduino_connected:
|
while True:
|
||||||
ports = getoutput(f'ls /dev | grep {port}').split('\n')
|
ports = getoutput(f'ls /dev | grep {port}').split('\n')
|
||||||
if ports != ['']:
|
if ports != ['']:
|
||||||
ports.sort()
|
ports.sort()
|
||||||
port = ports[len(ports) - 1]
|
port = ports[len(ports) - 1]
|
||||||
arduino_connected = True
|
break
|
||||||
|
|
||||||
link = txfer.SerialTransfer(port, 115200, timeout=.1)
|
link = txfer.SerialTransfer(port, 115200, timeout=.1)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue