../_images/tiagopro-icon.png ../_images/tiago-icon.png ../_images/triago-icon.png ../_images/mobile-bases-icon.png

How to use advanced docking functionalities#

๐Ÿ Goal of this tutorial

By the end of this tutorial, you will know how to make the robot learn a dock location and autonomously navigate to a previously learned dock location.

Pre-requisites#

Caution

This tutorial requires the robot to be equipped with a dockstation and that the dockstation is properly powered.

Learn a Dock location using RViz#

The easiest way to make the robot learn a dock location, is by using the RViz GUI. This requires that you first establish the communication with the robot as explained in Set up ROS 2 communication with the robot.

Then, in the same terminal that is connected to the robot, you can start RViz with the command:

rviz2 -d /opt/pal/$PAL_DISTRO/share/<ROBOT>_2dnav/config/rviz/navigation.rviz

Attention

Make sure to replace the <ROBOT> placeholder with the name of your robot (e.g. tiago, omni_base, tiago_pro, etc.).

Otherwise, if you want to use the simulation, you can use the following command:

source /opt/pal/${PAL_DISTRO}/setup.bash
ros2 launch <robot>_gazebo <robot>_gazebo.launch.py navigation:=True advanced_navigation:=True docking:=True world_name:=pal_office_w_docks

This starts the simulation in a virtual environment with several dockstations available.

../_images/pal_office_w_docks.svg

Once RViz is running and is connected to the robot or to the simulation, you can learn a dock location by following these steps:

  1. Ensure Localization: Make sure the robot is well-localized to prevent errors in learned dock poses.

  2. Position the Robot: Place the robot near the docking station in a staging pose as shown below:

    Staging Pose for Dock Detection

    Staging Pose for Dock Detection#

  3. Executes the /learn_dock:

    Attention

    Ensure the robot is well-localized during the /learn_dock process. Poor localization can lead to incorrect dock poses being stored in the database.

    Use the following command to learn a dock station:

    ros2 action send_goal /learn_dock pal_docking_msgs/action/LearnDock "target_id: <TARGET_ID>
    dock_id: '<DOCK_ID>'
    dock_type: <DOCK_TYPE>
    execute_dock_maneuver: true
    dock_charging_plugin: pal_charging_dock"
    

    Warning

    Remember to replace the <TARGET_ID>, <DOCK_ID> and <DOCK_TYPE> placeholders for your specific values.

    Tip

    Setting execute_dock_maneuver to true allows the robot to validate the docking stationโ€™s position during the learning phase.

  4. Validate: Once completed, the dock station is stored in the database. Use the following command to list all available docks:

    ros2 service call /docking_manager/get_docks eulero_msgs/srv/GetAnchors "parent_key: '<BUILDING_NAME>'"
    

    Warning

    Remember to replace the <BUILDING_NAME> placeholder for your specific building.

    You can also use rviz to learn dock stations interactively as shown below:

Next steps#