Chapter 5. Building a Robot that Can Walk
You've built robots that can navigate using tracks. Now let's build one that can walk. Walking robots are interesting as they can go to terrains where wheeled or tracked vehicles can't go. They also perform advanced functions where they can utilize their legs for uses other than walking.
In this chapter, you will build the basic platform of a quadruped. To do this, you will learn the following:
- The working of servos
- Using the BeagleBone Black to control a large number of servos with the help of a servo controller
- Creating complex movements out of simple servo commands
Building robots that can walk
In this chapter, you'll build a quadruped, that is, a robot with four legs. You'll be using 12 servos so that each leg has three points that can move, or three Degrees of Freedom (DOF). In Chapter 6, A Robot that Can Sail, you'll learn how to control servomotors directly using the GPIO pins of the BeagleBone Black. In...