Book Image

ESP8266 Robotics Projects

By : Pradeeka Seneviratne
Book Image

ESP8266 Robotics Projects

By: Pradeeka Seneviratne

Overview of this book

The ESP8266 Wi-Fi module is a self-contained SOC with an integrated TCP/IP protocol stack and can give any microcontroller access to your Wi-Fi network. It has a powerful processing and storage capability and also supports application hosting and Wi-Fi networking. This book is all about robotics projects based on the original ESP8266 microcontroller board and some variants of ESP8266 boards. It starts by showing all the necessary things that you need to build your development environment with basic hardware and software components. The book uses the original ESP8266 board and some variants such as the Adafruit HUZZAH ESP8266 and the Adafruit Feather HUZZAH ESP8266 . You will learn how to use different type of chassis kits, motors, motor drivers, power supplies, distribution boards, sensors, and actuators to build robotics projects that can be controlled via Wi-Fi. In addition, you will learn how to use line sensors, the ArduiCam, Wii Remote, wheel encoders, and the Gripper kit to build more specialized robots. By the end of this book, you will have built a Wi-Fi control robot using ESP8266.
Table of Contents (15 chapters)
Title Page
Credits
About the Author
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

Chapter 4. Building a Mini Round Robot with the Feather HUZZAH ESP8266

In the previous two chapters, you used the original ESP8266, which is ESP01 and the Arduino UNO to drive motors with a motor driver. You should have noticed that the ESP01 has only two general-purpose input/output (GPIO) pins. Using two GPIO pins, you can only drive a single motor through a motor driver. Therefore, for two motors, you will need four GPIO pins. As a solution, you used the Arduino UNO as a bridge between the ESP01 and motor driver. In the previous two projects, the ESP01 was used to provide all networking facilities through Wi-Fi and the Arduino UNO worked as the microcontroller.

In this chapter, you will learn the following topics:

  • About the Feather HUZZAH ESP8266
  • About the DC Motor + Stepper FeatherWing
  • Assembling the Mini Round Robot Chassis Kit with Feather HUZZAH ESP8266 and DC Motor + Stepper FeatherWing
  • Creating a Blynk app with a Joystick widget
  • Writing an Arduino sketch to communicate with the Blynk...