pybricks.pupdevices.Remote: Add more examples.

This commit is contained in:
Laurens Valk
2021-07-28 14:50:43 +02:00
parent 8463206f8e
commit 62bb262b96
5 changed files with 79 additions and 2 deletions
+12
View File
@@ -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!")
+16
View File
@@ -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.
+6
View File
@@ -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!")
+9
View File
@@ -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)