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

Controlling a robot with your voice


A valuable way to interact with your robot is to use voice commands. This method is useful when you have no other means of control (keyboard, joystick, or smart device), or you would like a more convenient method. This type of technology is critical for people with physical disabilities, and in the future, robots will be able to provide helpful functions for all mankind through the use of voice commands.

Today though, we can implement voice control over our ROS robot to enable any action or process you can control by any other method. These actions are typically navigating the robot or controlling an arm, but this list is virtually endless. With proper hardware, you could verbally command your robot to do the following:

  • Change the TV channel

  • Retrieve a beverage from the kitchen

  • Let the dog outside

Do whatever you can imagine. Currently, there are two primary speech recognition tools available in ROS: Sphinx and rospeex. These tools and their ROS interfaces...