mirror of
https://github.com/pybricks/pybricks-api.git
synced 2026-07-28 04:07:46 +00:00
7 lines
153 B
Python
7 lines
153 B
Python
from pybricks.pupdevices import Remote
|
|
|
|
# Connect to any remote. Search forever until we find one.
|
|
my_remote = Remote(timeout=None)
|
|
|
|
print("Connected!")
|