Related Titles
- Full Description
-
This book will show you how to use your Arduino to control a variety of different robots, while providing step-by-step instructions on the entire robot building process. You'll learn Arduino basics as well as the characteristics of different types of motors used in robotics. You also discover controller methods and failsafe methods, and learn how to apply them to your project. The book starts with basic robots and moves into more complex projects, including a GPS-enabled robot, a robotic lawn mower, a fighting bot, and even a DIY Segway-clone.
- Introduction to the Arduino and other components needed for robotics
- Learn how to build motor controllers
- Build bots from simple line-following and bump-sensor bots to more complex robots that can mow your lawn, do battle, or even take you for a ride
Please note: the print version of this title is black & white; the eBook is full color.
What youll learn
- Basics of motor-control
- Basics of PCB design and fabrication
- R/C control and decoding
- Autonomous sensor guidance
- Frame building from various materials
- Instructions for a variety of robot designs
Who this book is for
Electronics and robotics hobbyists and DIY builders.
- Table of Contents
-
Table of Contents
- The Basics
- Arduino for Robotics
- Lets Get Moving
- Linus the Line-Bot
- Wally the Wall-Bot
- Making PCBs
- The Bug-Bot
- Explorer-Bot
- RoboBoat
- Lawn-Bot 400
- The Seg-Bot
- The Battle-Bot
- Alternate Control
- Source Code/Downloads
- Errata
-
If you think that you've found an error in this book, please let us know about it. You will find any confirmed erratum below, so you can check if your concern has already been addressed.
On page Listing 1-4:
value pot_val is named pot_val and pot_value
On page 64:
Fig 2-14.
While the Arduino is safe from reverse EMF from the motor, you still need a diode to protect the photo-transistor. I would have worded the Fig2-14 caption thus:
...(no common GND signal), the Arduino output is protected from the motor reverse EMF. However, you still need a protection diode for the photo-transistor.
On page 107, 109, 112:
several references to lithium battery voltages read 3-7v instead of 3.7v
Change:
3-7v to 3.7v
On page 506:
read_pots() function.
The commentary //We want to map this into a range between -1 and 1...
Should be -7 and 7?
if ( angle == 0.00 )
{
}
On page 506:
read_pots() function.
Why assign 0 to gain_reading if in the following statement analogRead(gainPot) will be assigned.
I think:
if (...)
{
gain_reading = 0;
}
else
{
gain_reading = analogRead(gainPot);
}
On page 525:
Eagle files for the mini-OSMC board are missing from google sites.
Quote: To build the mini-OSMC for your weapon motor, download the Eagle files from
https://sites.google.com/site/arduinorobotics/home/chapter12_files.









