For now, this section is targeting Gazebo Classic on ROS 2 Humble (Ubuntu 22.04).

sudo apt install ros-humble-ros-gz

(if you previously installed other versions of Gazebo, remove them first). After installing Gazebo, make sure your environment is sourced to start the software. You can start Gazebo either independently from ROS, or using a ROS launch file. To run Gazebo without ROS:

gz sim

This will take you to a quick-start menu. Click on “Empty” to load an empty world, and you can create basic shapes. Make sure you click on the “play” button to start the simulation time. To stop Gazebo, press Ctrl + C in the terminal where you started it. To run Gazebo from a ROS launch file (will be useful later when we want to create our own launch file):

ros2 launch ros_gz_sim gz_sim.launch.py

Spawn the Robot in Gazebo

For starting the robot state publisher with the URDF:

ros2 run robot_state_publisher robot_state_publisher --ros-args -p robot_description:="$(xacro /home/<user>/ros2_ws/src/my_robot_description/urdf/my_robot.urdf.xacro)"

In 2nd terminal, start Gazebo with an empty world, and the “-r” option to also start the simulation time:

ros2 launch ros_gz_sim gz_sim.launch.py gz_args:="empty.sdf -r"

In a 3rd terminal, spawn the robot in Gazebo:

ros2 run ros_gz_sim create -topic robot_description

Launch file to start the robot in Gazebo

We create a new package to write our Launch file, and call it my_robot_bringup

ros2 pkg create my_robot_bringup

We create a new launch folder, and as we create a new folder, we need to install it in our CMakeLists.txt file. Here, we first remove the entire if(BUILD_TESTING)... endif() block, and add a few new lines of code instead,

install(
	DIRECTORY launch
	DESTINATION share/${PROJECT_NAME}/
)

Now, inside the launch folder we create a new file callled my_robot_gazebo.launch.xml and then add the following content into it.

<launch>
    <let name="urdf_path"
         value="$(find-pkg-share my_robot_description)/urdf/my_robot.urdf.xacro" />
    <!--<let name="gazebo_config_path" 
         value="$(find-pkg-share my_robot_bringup)/config/gazebo_bridge.yaml" />-->
    <!--<let name="rviz_config_path"
         value="$(find-pkg-share my_robot_description)/rviz/urdf_config.rviz" />-->

    <node pkg="robot_state_publisher" exec="robot_state_publisher">
        <param name="robot_description"
               value="$(command 'xacro $(var urdf_path)')" />
    </node>
    
    <include file="$(find-pkg-share ros_gz_sim)/launch/gz_sim.launch.py">
        <arg name="gz_args" value="empty.sdf -r" />
    </include>

    <node pkg="ros_gz_sim" exec="create" args="-topic robot_description" />

    <!--<node pkg="ros_gz_bridge" exec="parameter_bridge">
        <param name="config_file"
            value="$(var gazebo_config_path)" />
    </node>-->

    <!--<node pkg="rviz2" exec="rviz2" args="-d $(var rviz_config_path)" />-->
</launch>