Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Raspberry Pi Robotic Blueprints
Raspberry Pi Robotic Blueprints

Raspberry Pi Robotic Blueprints: Utilize the powerful ingredients of Raspberry Pi to bring to life your amazing robots that can act, draw, and have fun with laser tags

eBook
€8.99 €29.99
Paperback
€37.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

Raspberry Pi Robotic Blueprints

Chapter 2. Adding Raspberry Pi to a Humanoid Robot

Modifying an RC car with Raspberry Pi is a wonderful project, but you can take this idea even further by modifying different toys with Raspberry Pi. One class of toys that are excellent candidates for our project are a set of robot toys by WowWee. You can purchase these toys from the company directly at http://wowwee.com/, but you can also find used versions of these toys on eBay for a significantly lower price.

In this chapter, you'll learn the following:

  • How to send and receive voice commands
  • How to interpret commands and initiate actions

There are several toys that have excellent possibilities. One such toy is the WowWee Roboraptor. The following is an image of this robot:

Adding Raspberry Pi to a Humanoid Robot

Another option is the WowWee Robosapien. A picture of this robot is given in the following image:

Adding Raspberry Pi to a Humanoid Robot

You'll use this robot for your project, as it has more functionality and is easier to modify. Specifically, you're going to connect to the internal...

Giving your robot voice commands

Now that your robot knows how to respond to the commands from the Python program, you can now add the capability to your robot to respond to voice commands. You'll also add the capability to allow your robot to speak, this will make the robot more interactive.

To add these capabilities to your robot, you'll need to add some hardware. This project requires a USB microphone and speaker adapter. Raspberry Pi itself has an audio output but does not have an audio input. So, you'll need the following three pieces of hardware:

  • A USB device to plug in a microphone and speaker
    Giving your robot voice commands
  • A microphone that can plug into the USB device
    Giving your robot voice commands
  • A powered speaker that can plug into the USB device
    Giving your robot voice commands

Fortunately, these devices are inexpensive and widely available. Make sure that the speaker is powered because your board will generally not be able to drive a passive speaker with enough power for your applications. The speaker can use either internal battery power or can get its power...

Using eSpeak to allow your robot to respond in voice

Sound is an important tool in our robotic toolkit, but you will want to do more than just play music. Let's make our robot speak. You're going to start with enabling eSpeak, an open source application that provides us with a computer voice. It is a voice generation application. To get this free functionality, download the eSpeak library by typing sudo apt-get install espeak at the prompt. The download may take a while but the prompt will reappear when it is complete. Now, let's see if Raspberry Pi has a voice. Type the espeak "hello" command. The speaker should emit a hello in a computer generated voice. If it does not, check the speakers and the volume level.

Now that we have a computer generated voice, you may want to customize it. eSpeak offers a fairly complete set of customization features, including a large number of languages, voices, and other options. To access these, you can type in the options at the...

Using pocketsphinx to accept your voice commands

Now that your robot can talk, you'll also want it to obey voice commands. This section will show you how to add speech recognition to your robotic projects. This isn't nearly as simple as the speaking part but, thankfully, you have some significant help from the open source development community. You are going to download a set of capabilities named pocketsphinx, which will allow our project to listen to our commands.

The first step is downloading the pocketsphinx capabilities. Unfortunately, this is not quite as user-friendly as the eSpeak process, so follow along the steps carefully. There are two possible ways to do this. If you have a keyboard, mouse, and display connected or want to connect through vncserver, you can do this graphically by performing the following steps:

  1. Go to the Sphinx website hosted by Carnegie Mellon University (CMU) at http://cmusphinx.sourceforge.net. This is an open source project that provides you with...

Interpreting commands and initiating actions

Now that the system can both hear and speak, you'll want to provide the robot with the capability to respond to your speech and execute some commands based on the speech input. Next, you're going to configure the system to respond to simple commands.

In order to respond, we're going to edit the continuous.c code in the /home/pi/src/programs directory. We could create our own C file, but this file is already set up in the makefile system and is an excellent starting spot. You can save a copy of the current file as continuous.c.old so that you can always get back to the starting program if required. Then, you will need to edit the continuous.c file. It is very long and a bit complicated. However, you are specifically looking for a section in the code, which is shown in the following screenshot. Look for the comment line /* Exit if the first word spoken was GOODBYE */ comment line.

Interpreting commands and initiating actions

In this section of the code, the word has already been...

Summary

In this chapter, you've learned the basics of how to hack an RC toy car and a toy robot using Raspberry Pi. Feel free to experiment; you can see how easily you can play all sorts of games with your new toys. In the next chapter, you'll learn how to build a robot from the ground up, in this case, a robot that can plan its own path through a set of barriers.

Left arrow icon Right arrow icon

Key benefits

  • Learn to implement a number of features offered by Raspberry Pi to build your own amazing robots
  • Understand how to add vision and voice to your robots.
  • This fast-paced practical guide comprises a number of creative projects to take your Raspberry Pi knowledge to the next level

Description

The Raspberry Pi is a series of credit card-sized single-board computers developed in the UK by the Raspberry Pi Foundation with the intention of promoting the teaching of basic computer science in schools. The Raspberry Pi is known as a tiny computer built on a single circuit board. It runs a Linux operating system, and has connection ports for various peripherals so that it can be hooked up to sensors, motors, cameras, and more. Raspberry Pi has been hugely popular among hardware hobbyists for various projects, including robotics. This book gives you an insight into implementing several creative projects using the peripherals provided by Raspberry Pi. To start, we’ll walk through the basic robotics concepts that the world of Raspberry Pi offers us, implementing wireless communication to control your robot from a distance. Next, we demonstrate how to build a sensible and a visionary robot, maximizing the use of sensors and step controllers. After that, we focus on building a wheeled robot that can draw and play hockey. To finish with a bang, we’ll build an autonomous hexcopter, that is, a flying robot controlled by Raspberry Pi. By the end of this book, you will be a maestro in applying an array of different technologies to create almost any imaginable robot.

Who is this book for?

This all-encompassing guide was created for anyone who is interested in expanding their knowledge in applying the peripherals of Raspberry Pi. If you have a fancy for building complex-looking robots with simple, inexpensive, and readily available hardware, then this book is ideal for you. Prior understanding of Raspberry Pi with simple mechanical systems is recommended.

What you will learn

  • Add sensors to your robot so that it can sense the world around it
  • Know everything there is to know about accessing motors and servos to provide movement to the robotic platform
  • Explore the feature of adding vision to your robot so it can “see” the world around it
  • Refine your robot with the skill of speech recognition so that it can receive commands
  • Polish your robot by adding speech output so it can communicate with the world around it
  • Maximize the use of servos in Raspberry Pi to create a drawing robot
  • Strengthen your robot by adding wireless communication skills so you can see what the robot is seeing and control it from a distance
  • Build an unbelievable autonomous hexcopter controlled by Raspberry Pi

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Oct 30, 2015
Length: 198 pages
Edition : 1st
Language : English
ISBN-13 : 9781784390747
Category :
Concepts :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Oct 30, 2015
Length: 198 pages
Edition : 1st
Language : English
ISBN-13 : 9781784390747
Category :
Concepts :

Packt Subscriptions

See our plans and pricing
Modal Close icon
€18.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
€189.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts
€264.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 107.97
Learning Robotics using Python
€36.99
Raspberry Pi Robotic Blueprints
€37.99
Raspberry Pi Robotic Projects
€32.99
Total 107.97 Stars icon
Banner background image

Table of Contents

8 Chapters
1. Adding Raspberry Pi to an RC Vehicle Chevron down icon Chevron up icon
2. Adding Raspberry Pi to a Humanoid Robot Chevron down icon Chevron up icon
3. Building a Tracked Vehicle That Can Plan Its Own Path Chevron down icon Chevron up icon
4. Building a Robot That Can Play Laser Tag Chevron down icon Chevron up icon
5. A Robot That Can Draw Chevron down icon Chevron up icon
6. A Robot That Can Play Air Hockey Chevron down icon Chevron up icon
7. A Robot That Can Fly Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Full star icon Half star icon 4.6
(5 Ratings)
5 star 60%
4 star 40%
3 star 0%
2 star 0%
1 star 0%
Botmaker Jan 04, 2016
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This is a great book, especially for those who learn by doing. Each chapter digs in and shows you a specific example with a complete step by step process that any level of maker should be able to understand. The included pictures and screen shots go a long way towards a reader understanding what is being accomplished by the author in each example. I recommend this book to both new builders and those with experience, as they each can gain from reading and performing the exercises.
Amazon Verified review Amazon
Simon Docwra Jan 13, 2016
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This book is well written and extremely easy to read. The projects demonstrated are both educational and to me very practical. I don't get a lot of free time, but the way this book is structured you can easily pick up where you got to or jump from project to project. The projects are also quick to get into making use of open source libraries and second hand toys.
Amazon Verified review Amazon
Werner Dec 28, 2015
Full star icon Full star icon Full star icon Full star icon Full star icon 5
we at developer-blog.net love this book. The chapters are all unique in content and give many great suggestions on how to implement your own Raspberry Pi controlled robot. All tutorials are straight forward, but good explained. In general, they are for advanced users with basic knowledge, but also beginners can learn a lot. All used sensors are cheap to get from here (Amazon) or other online platforms like ebay.My favorite chapter was how path planning is implemented with some basic Python scripts.
Amazon Verified review Amazon
Richard J Breiten Dec 20, 2015
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
Richard Grimmett continues his series of books on Arduino, BeagleBone, and Raspberry Pi's with this book on Robotic Blueprints. This book covers using these microcontrollers in RC vehicles, making a tracked vehicle plan its own path, building a robot that plays laser tag, and even a flying robot. This book is not intended for those just getting their feet wet in using an RPi and its fellow brethren but rather to expound upon the knowledge the reader already has. Source code for many portions and projects is provided by the author to assist the reader in coming up with their own projects. All in all, this is a very good discourse on robotic projects featuring the evolving area of microprocessors. I look forward to seeing what the author and the manufacturers can create in the coming next few years.
Amazon Verified review Amazon
Andrew Connell Dec 18, 2015
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
I'll admit when I picked this up, it wasn't what I thought it would be. Each chapter is a separate hands-on project like taking apart and controlling a R/C car with a RaspberryPi. A lot of the pictures did a decent job of showing where the connections were and how things were hooked up but some schematic drawings would have helped with hookups. All in all, a good book if you are looking for a "I learn best with experience, so let me dive into a few projects."
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.