Add autoconnect support for LEGO Technic Large Hub

pull/141/head
Steve Robbins 2021-01-20 22:22:44 -06:00
rodzic aae27f5b39
commit 4f77b32e99
1 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -238,6 +238,9 @@ def is_micropython_usb_device(port):
# Check for Teensy VID:PID
if usb_id.startswith('usb vid:pid=16c0:0483'):
return True
# Check for LEGO Technic Large Hub
if usb_id.startswith('usb vid:pid=0694:0010'):
return True
return False