Gazebo Robot Simulation

Introduction

For the upcoming tasks you will need a robot with sensors and actuators that is capable of moving and perceive in its world. Luckily you don’t need to buy one or built one on your own.

ROS2 works with different 3D robot simulators. One of them is Gazebo, which offers 3D dynamics simulation with a phyics engine. It is able to simulate sensors with noise, e.g. laser range finders, cameras, IMUs, GPS and a lot more. You can also include different plugins to run SITL and HITL, e.g. of flight controllers. And it offers full ROS2 support and can communicate with ROS2.

Install and run a Turtlebot3 simulation

With your current skill level, you are already able to install and run a ROS2 package including a Gazebo simulation and its dependencies:

$ sudo apt install ros-foxy-ament-cmake ros-foxy-gazebo-* ros-foxy-turtlebot3*

$ export TURTLEBOT3_MODEL=waffle

$ echo 'export TURTLEBOT3_MODEL=waffle' >> ~/.bashrc

$ source ~/.bashrc

$ ros2 launch turtlebot3_gazebo turtlebot3_house.launch.py

The startup of Gazebo may take quite a while. In between let’s talk about the follwoing lines

$ export TURTLEBOT3_MODEL=waffle

This will create an environment variable that defines, which model of the robot will be used. There are different configurations for the Turtlebot3 robot. We will keep using the waffle model.

Move your Turtlebot3 robot

As soon as Gazebo is running, it is possible to control the robot. Like in the turtlesim example, we will need another ROS2 node to launch the control device. In this case there is a package that can be used for that purpose:

$ ros2 run turtlebot3_teleop teleop_keyboard

Congratulations! You do now have your own robot with sensors and actuators that is capable of moving and perceive in its world.

There are also other worlds available. Checkout

$ ros2 launch turtlebot3_gazebo turtlebot3_world.launch.py

Or in case your computer has problems to run the robot in an environment, try the empty world:

$ ros2 launch turtlebot3_gazebo empty_world.launch.py