ROS 2 Control is being used for controlling the robot and to interface with ROS framework.
The following diagram describes several parts of the system that controls the robot via ROS 2 control tools.
flowchart TD
%% COLORS %%
classDef blue fill:#2374f7,stroke:#000,stroke-width:2px,color:#fff
classDef red fill:#ed2633,stroke:#000,stroke-width:2px,color:#fff
classDef green fill:#16b522,stroke:#000,stroke-width:2px,color:#fff
classDef orange fill:#fc822b,stroke:#000,stroke-width:2px,color:#fff
%% DIAGRAM %%
A(Diff Drive Controller):::blue ---|encoder read/velocity interface| B(Hardware Interface):::green
C(Joint State Broadcaster):::blue ---|encoder read| B(Hardware Interface)
M(Controller Manager):::orange -..->|manages lifecycle| A
M(Controller Manager) -..-> |manages lifecycle| C
M(Controller Manager) -..-> |activates hw component| B
D["/cmd_vel"] -->|subs| A
A -->|pubs| O["/odom"]
A -->|pubs| T["/tf"]
C -->|pubs| J["/joint_states"]
linkStyle default stroke:red
linkStyle 0 stroke-width:4px,stroke:green
linkStyle 1 stroke-width:4px,stroke:green
linkStyle 5 stroke:blue
The hardware interface component for this robot is implemented by andino_base
package. It is in charge of providing the necessary state and command interfaces to be claimed by the controllers.
The Controller Manager is in charge of managing the lifecycle of the controllers, access to the hardware interfaces and offers services to the ROS-world.
The hardware interface to be activated when controller_manager
node is activated is indicated via robot description passed via ROS 2 Parameter. A tag <ros2_control>
is expected to be present in the robot description with the information of the hardware components to be activated as well as the state and command interfaces. See andino_control.urdf.xacro
.
Two controllers are being used from the available ros2_controllers:
- diff_drive_controller: Controller for mobile robots with differential drive. Input for control are robot body velocity commands which are translated to wheel commands for the differential drive base. Odometry is computed from hardware feedback and published.
- Used state interfaces:
- left wheel velocity
- right wheel velocity
- left wheel position
- right wheel position
- Used command interfaces
- left wheel velocity
- right wheel velocity
- Used state interfaces:
- joint_state_broadcaster: The broadcaster reads all state interfaces and reports them on
/joint_states
and/dynamic_joint_states
.- Used state interfaces:
- left wheel position
- right wheel position
- Used state interfaces:
Each controller accepts ROS 2 parameters which they are provided via andino_controllers.yaml
.