Book Image

ROS Robotics By Example

Book Image

ROS Robotics By Example

Overview of this book

The visionaries who created ROS developed a framework for robotics centered on the commonality of robotic systems and exploited this commonality in ROS to expedite the development of future robotic systems. From the fundamental concepts to advanced practical experience, this book will provide you with an incremental knowledge of the ROS framework, the backbone of the robotics evolution. ROS standardizes many layers of robotics functionality from low-level device drivers to process control to message passing to software package management. This book provides step-by-step examples of mobile, armed, and flying robots, describing the ROS implementation as the basic model for other robots of these types. By controlling these robots, whether in simulation or in reality, you will use ROS to drive, move, and fly robots using ROS control.
Table of Contents (17 chapters)
ROS Robotics By Example
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Preface
Index

Testing the 3D sensor in standalone mode


Before we make an attempt to control the TurtleBot from a remote computer, it is wise to test the TurtleBot in standalone mode. TurtleBot will be powered on and we will use its netbook to check whether the robot is operational on its own.

To prepare the TurtleBot, perform the following steps:

  1. Plug in the power to the 3D sensor via the TurtleBot base connection (Kinect only).

  2. Plug in the power to the netbook via the TurtleBot base connection.

  3. Power on the netbook and establish the network connection on the netbook. This should be the network used for TurtleBot's ROS_MASTER_URI IP address.

  4. Power on the TurtleBot base.

  5. Plug in the 3D sensor to the netbook through a USB 2.0 port (Kinect for Windows v2 uses the USB 3.0 port).

Ensure that ROS environment variables are configured correctly on the netbook. Refer to the Netbook network setup section in Chapter 3, Driving Around with TurtleBot, and the Configuring TurtleBot and installing 3D sensor software section...