This project shows how to control some servomotors remotely in a Wi-Fi network, using an ordinary internet browser (Firefox, for instance). This might be used in several applications: toys, robots, drones, camera pan/tilt, etc.
The motors were attached to an Arduino Uno, which connects the Wi-Fi network through a ESP-8266 module. The control interface was designed with HTML and jQuery.
Miguel's tutorial (http://allaboutee.com/2015/01/02/esp8266-arduino-led-control-from-webpage/), which shows how to turn LEDs on/off using ESP-8266, served as inspiration for this post.
The technique shown here is used in one of my projects: "Robô da Alegria". You might found more about this in one of the following links:
https://hackaday.io/project/12873-rob-da-alegria-joy-robot
https://www.facebook.com/robodaalegria/
https://github.com/ferauche/RoboAlegria
Step 1: ElectronicsFor this project you'll need the following components:
- Protoshield (for a more compact version) or an ordinary breadboard (buy)
- 10 kohm resistor (x3)
- Some jumper wires
- SG90 servomotor (x2) (buy)
- A computer (for compiling and uploading Arduino code)
You won't need specific tools for the assembly of this project. All the components can be found online on your favorite e-commerce store. The circuit is powered by the USB port (connected to a computer or a ordinary phone charger), but you may also add an external DC power supply or a battery connected to the Arduino power jack.
Step 2: AssemblyConnect all components according to the schematic. You'll need some jumper wires to connect the ESP-8266 module and the servomotors. You might use a proto-shield (for a more compact circuit), an ordinary breadboard, or design you own Arduino shield.
Plug the USB cable to the Arduino Uno board and proceed to the next step.
Step 3: Arduino codeInstall the latest Arduino IDE. In this project servo.h library was used for the control of the servos. In order to avoid conflict between the Wi-Fi module and computer's USB port during the upload of the code, softserial
library was used. No additional library was needed for communication with ESP-8266 module. Please check the baud rate of your ESP8266 and set it properly in the code.
Some servomotors start to jitter and make strange noises when its position is close to the limits (0 and 180 degrees). To avoid that, the angle was limited between 10 and 170 degrees both in the Arduino code and in the control interface (later).
Unfortunately, servo.h
library and softserial.h
library use the same timer of the microcontroller. This might cause jitter in the servos whenever the Arduino communicates with the ESP-8266. To avoid that, the servos are detached from the Arduino after each command. You might also connect the module to the standard serial pins. In this case, remember to disconnect the module before each upload.
Download Arduino code (wi-servo.ino
) and replace the XXXXX by your Wi-Fi router SSID and YYYYY by router password. Connect the Arduino board to your computer USB port and upload the code.
An HTML interface was designed for the control of the servomotors. In this example, two servos were used, but more can be added to the Arduino Uno (I tested up to four motors).
A textbox form is used to enter IP address of the ESP module. Download Wi-servo.html
and jquery.js
files and save both in the same folder.
When the Arduino is restarted, it will try to connect your Wi-Fi network automatically. Use the Serial Monitor to check if the connection was successful, and to obtain which IP was assigned to your ESP-8266 by your router.
Open the html file in an internet browser (Firefox).
Inform the IP address of your ESP-8266 in the textbox and you'll be ready to go. Select the angle desired for each servo using the sliders. The browser will automatically send a request to the Arduino when you release mouse button, and move each servo.
Comments