Chapter 17. Your Own Mobile Robot: Part 2
In Chapter 16, we learned how to add a new mobile robot, the TortoiseBot, to ROS. We decided on topic APIs, built a complete Gazebo model, and used low-level velocity commands to drive it around in simulation. In this chapter, we’ll take the next big step by getting the TortoiseBot to navigate autonomously (in simulation). To get there, we’ll take a series of smaller steps:
-
Visualize and verify transform data.
-
Add a laser sensor.
-
Configure and incorporate the navigation stack.
-
Use
rvizto localize the robot and send navigation goals.
Verifying Transforms
Recalling the setup with which we ended the previous chapter, we can launch a simulation of the TortoiseBot like so:
user@hostname$ roslaunch tortoisebot tortoisebot.launch
That launch file will start a Gazebo simulation of the TortoiseBot in an empty
world. Now it’s time to use rviz to visualize the state of the (simulated)
robot. Leaving Gazebo running, start rviz in the usual way:
user@hostname$ rviz
Note
You might wonder why Gazebo and rviz are separate programs. They look
pretty similar: both give you a 3D view of a robot and allow you to visualize
various aspects of the robot and its environment. They are separate programs
because they play very different roles: Gazebo simulates a robot, while
rviz visualizes a robot. Gazebo is a substitute for a real robot in a physical environment, computing the effects of forces and generating synthetic sensor data. While the 3D ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access