mirror of
https://github.com/pybricks/pybricks-api.git
synced 2026-09-12 01:24:17 +00:00
pybricks.pupdevices.Remote: Add more examples.
This commit is contained in:
@@ -18,8 +18,42 @@ Remote Control
|
||||
Examples
|
||||
-------------------
|
||||
|
||||
Check which buttons are pressed
|
||||
*******************************
|
||||
Checking which buttons are pressed
|
||||
**********************************
|
||||
|
||||
.. literalinclude::
|
||||
../../../examples/pup/remote/basics.py
|
||||
|
||||
|
||||
Using the timeout setting
|
||||
**********************************
|
||||
|
||||
You can use the ``timeout`` argument to change for how long the hub searches
|
||||
for the remote. If you choose ``None``, it will search forever.
|
||||
|
||||
.. literalinclude::
|
||||
../../../examples/pup/remote/timeout_none.py
|
||||
|
||||
|
||||
If the remote was not found within the specified ``timeout``,
|
||||
an :ref:`OSError <OSError>` is raised. You can catch this exception to run
|
||||
other code if the remote is not available.
|
||||
|
||||
|
||||
.. literalinclude::
|
||||
../../../examples/pup/remote/timeout_exception.py
|
||||
|
||||
Changing the name of the remote
|
||||
*******************************
|
||||
|
||||
You can change the Bluetooth name of the remote. The factory default name is
|
||||
``Handset``.
|
||||
|
||||
.. literalinclude::
|
||||
../../../examples/pup/remote/set_name.py
|
||||
|
||||
You can specify this name when connecting to the remote.
|
||||
This lets you pick the right one if multiple remotes are nearby.
|
||||
|
||||
.. literalinclude::
|
||||
../../../examples/pup/remote/use_name.py
|
||||
|
||||
Reference in New Issue
Block a user