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
+36 -2
View File
@@ -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