Skip to content

Commit

Permalink
Example3: Add section on command mode switching (#624) (#625)
Browse files Browse the repository at this point in the history
* Add section on command mode switching

* Update example_3/doc/userdoc.rst

Co-authored-by: Sai Kishor Kothakota <[email protected]>

---------

Co-authored-by: Sai Kishor Kothakota <[email protected]>
(cherry picked from commit 1b6c0f1)

Co-authored-by: Christoph Fröhlich <[email protected]>
  • Loading branch information
mergify[bot] and christophfroehlich authored Nov 3, 2024
1 parent 56004a1 commit dcc67fe
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion example_3/doc/userdoc.rst
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,30 @@ Tutorial steps
[RRBotSystemMultiInterfaceHardware]: Got pos: 0.78500, vel: 0.00000, acc: 0.00000 for joint 0!
[RRBotSystemMultiInterfaceHardware]: Got pos: 0.78500, vel: 0.00000, acc: 0.00000 for joint 1!
6. To demonstrate illegal controller configuration, use one of the following launch file arguments:
6. Now you can also switch controllers during runtime, which also changes the command mode automatically. First, you have to load the new controller, for example the ``forward_position_controller`` if you haven't changed the launch file argument.

.. code-block:: shell
ros2 control load_controller forward_position_controller $(ros2 pkg prefix ros2_control_demo_example_3 --share)/config/rrbot_multi_interface_forward_controllers.yaml
ros2 control set_controller_state forward_position_controller inactive
Then you can switch controllers using the following command:

.. code-block:: shell
ros2 control switch_controllers --deactivate forward_velocity_controller --activate forward_position_controller
Observe the output of the following CLI commands, and see how the command interfaces are claimed by the new controller.

.. code-block:: shell
ros2 control list_controllers
ros2 control list_hardware_interfaces
Try now to send commands to the new controller, as described in the previous step.


7. To demonstrate illegal controller configuration, use one of the following launch file arguments:

* ``robot_controller:=forward_illegal1_controller`` or
* ``robot_controller:=forward_illegal2_controller``
Expand Down

0 comments on commit dcc67fe

Please sign in to comment.