Those commands are the ones you will run in this section on SLAM. Some of the commands are specific to the TurtleBot3 robot, and may not work with other bots. However, later we will see more generalized commands to run on any robot.
Must follow https://navigation.ros.org/tutorials/docs/navigation2_with_slam.html this guide.
For this tutorial, we will be using a TurtleBot3 — and the thing is, there are multiple turtlebots available in ROS2. Hence, it is important to specify which turtlebot we will be working with during this course. And to do so, we will set an environment variable.
gedit ~/.bashrc
Once, this fine is open, you’ll add another line to export our environment variable.
export TURTLEBOT3_MODEL=waffle
Make sure to write it EXACTLY this way, and SAVE this file.
Go through https://ros2-industrial-workshop.readthedocs.io/en/latest/_source/navigation/ROS2-Turtlebot.html to install TurtleBot3. Replace foxy with humble.
source /opt/ros/humble/setup.bash
ros2 pkg list | grep turtlebot3
If you do not see any turtlebot3 package, you can install it from Debian packages (recommended).
sudo apt install ros-humble-turtlebot3*
As you have installed the package from Debian, you will need to source humble setup.
source /opt/ros/humble/setup.bash
Set up Gazebo model path
export GAZEBO_MODEL_PATH=$GAZEBO_MODEL_PATH:`ros2 pkg \\
prefix turtlebot3_gazebo \\
`/share/turtlebot3_gazebo/models/
Now, you can launch Gazebo with simulation world
ros2 launch turtlebot3_gazebo empty_world.launch.py
or, after successfully opening it, you may close this empty world and try this closed world instead. ros2 launch turtlebot3_gazebo turtlebot3_world.launch.py