We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 469e685 commit 5dc25b5Copy full SHA for 5dc25b5
find_arduino.py
@@ -9,7 +9,6 @@ def check_ports():
9
port,hwid,desc = connection
10
vid_pid = re.search(r"(?<=VID\:PID\=)[0-9|A-Z|a-z]{4}\:[0-9|A-Z|a-z]{4}", desc)
11
vid_pid = None if vid_pid is None else vid_pid.group()
12
- print(vid_pid)
13
if vid_pid is None:
14
not_arduinos.append(connection)
15
else:
@@ -25,4 +24,4 @@ def check_ports():
25
24
for ard in arduinos:
26
print(ard)
27
for nard in not_arduinos:
28
- print(nard)
+ print(nard)
0 commit comments