mirror of
https://github.com/pybricks/pybricks-api.git
synced 2026-07-28 04:07:46 +00:00
pybricks.pupdevices.Remote: Add more examples.
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
from pybricks.pupdevices import Remote
|
||||
|
||||
# Connect to any remote.
|
||||
my_remote = Remote()
|
||||
|
||||
# Print the current name of the remote.
|
||||
print(my_remote.name())
|
||||
|
||||
# Choose a new name.
|
||||
my_remote.name('truck2')
|
||||
|
||||
print("Done!")
|
||||
@@ -0,0 +1,16 @@
|
||||
from pybricks.pupdevices import Remote
|
||||
|
||||
try:
|
||||
# Search for a remote for 5 seconds.
|
||||
my_remote = Remote(timeout=5000)
|
||||
|
||||
print("Connected!")
|
||||
|
||||
# Here you can write code that uses the remote.
|
||||
|
||||
except OSError:
|
||||
|
||||
print("Could not find the remote.")
|
||||
|
||||
# Here you can make your robot do something
|
||||
# without the remote.
|
||||
@@ -0,0 +1,6 @@
|
||||
from pybricks.pupdevices import Remote
|
||||
|
||||
# Connect to any remote. Search forever until we find one.
|
||||
my_remote = Remote(timeout=None)
|
||||
|
||||
print("Connected!")
|
||||
@@ -0,0 +1,9 @@
|
||||
from pybricks.pupdevices import Remote
|
||||
from pybricks.tools import wait
|
||||
|
||||
# Connect to a remote called truck2.
|
||||
truck_remote = Remote('truck2', timeout=None)
|
||||
|
||||
print("Connected!")
|
||||
|
||||
wait(2000)
|
||||
Reference in New Issue
Block a user