Robot and controller code for a Wall-E replica robot. For more information about the robot, visit https://wired.chillibasket.com/3d-printed-wall-e/
Main program to control the motors and servos of the robot. Features include:
- An animation queue, keeping track of the next servo movements the robot needs to perform.
- A random movement generator, allowing the robot to autonomously move and appear animated.
- Velocity control of all servo motors, facilitating smooth accelerations and decelerations.
- Non-blocking serial parsing, allowing the movements of the robot to be remote controlled.
- Battery level monitoring using a potential divider circuit.
The web interface is programmed in Python and uses Flask to generate a server. The Raspberry Pi is connected via USB to the Arduino micro-controller. The main features are:
- A JavaScript joystick, with which the movement of the robot can easily be controller.
- Manual control of all the servo motors.
- A list of movement animations which can be performed by the robot.
- A list of sounds which can be played.
- Settings page, where motor parameters, sound volume, and video options can be modified.
- Gamepad support; on any modern browsers, you can use a connected Xbox of PlayStation controller to control the robot.
- A simple login page to prevent everyone from having access to the controls (note: this is not a full access control system, please don't use this web interface on untrusted/public networks)
Image of the web interface and robot
- Ensure that the wiring of the electronics matches the diagram shown below.
- Download/clone the folder "wall-e" from the GitHub repository.
- Open
wall-e.ino
in the Arduino IDE; the filesanimations.ino
,MotorController.hpp
andQueue.hpp
should automatically open on separate tabs of the IDE as well. - Install the
Adafruit_PWMServoDriver.h
library- Go to Sketch -> Include Library -> Manage Libraries...
- Search for Adafruit Servo.
- Install latest version of the library.
- Connect to the computer to the micro-controller with a USB cable. Ensure that the correct Board and Port are selected in the Tools menu.
- Upload the sketch to the micro-controller.
Diagram showing the wiring of the robot's electronic components
- Once the sketch has been uploaded to the Arduino, power on the 12V battery while the micro-controller is still connected to the computer.
- Open the Serial Monitor (button in top-right of Arduino IDE). Set the baud rate to 115200.
- To control the movement of the robot, send the characters 'w', 'a', 's' or 'd' to move forward, left, back or right respectively. Send 'q' to stop all movement.
- To move the head, send the characters 'j', 'l', 'i' or 'k' to tilt the head left or right and the eyes upwards or downwards. At this stage, the servos may try to move further than they should and may look uncoordinated. This will be solved by performing the servo motor calibration steps below.
- Download/clone the folder "wall-e_calibration" from the GitHub repository
- Open
wall-e_calibration.ino
in the Arduino IDE. - Upload the sketch to the micro-controller, and open the serial monitor and set the baud rate to 115200.
- The sketch is used to calibrate the maximum and minimum PWM pulse lengths required to move each servo motor across its desired range of motion. The standard LOW and HIGH positions of each of the servos can be seen on diagrams on my website.
- When starting the sketch and opening the serial monitor, the a message should appear after 2-3 seconds, saying that it is ready to calibrate the LOW position of the first servo motor (the head rotation).
- Send the character 'a' and 'd' to move the motor backwards and forwards by -10 and +10. For finer control, use the characters 'z' and 'c' to move the motor by -1 and +1.
- Once the motor is position in the correct position, send the character 'n' to proceed to the calibration step. It will move on to the HIGH position of the same servo, after which the process will repeat for each of the 7 servos in the robot.
- When all joints are calibrated, the sketch will output an array containing the calibration values to the serial monitor.
- Copy the array, and paste it into lines 116 to 122 of the program wall-e.ino. The array should look similar to this:
int preset[][2] = {{410,120}, // head rotation {532,178}, // neck top {120,310}, // neck bottom {465,271}, // eye right {278,479}, // eye left {340,135}, // arm left {150,360}}; // arm right
When using batteries to power the robot, it is important to keep track of how much power is left. Some batteries may break if they are over-discharged, and the SD card of the Raspberry Pi may become corrupted if not enough power is delivered.
- To use the battery level detection feature on the Arduino, connect the following resistors and wiring as shown in the image below. The resistors (potential divider) reduce the 12V voltage down to a value below 5V, which is safe for the Arduino to measure using its analogue pins. The recommended resistor values are
R1 = 100kΩ
andR2 = 47kΩ
. - Uncomment line 50 in the main Arduino sketch wall-e.ino.
- If you are using different resistor values, change the value of the potential divider gain factor on line 54 of the sketch, according to the formula:
POT_DIV = R2 / (R1 + R2)
. - The program should now automatically check the battery level every 10 seconds, and this level will be shown on the Raspberry Pi web-interface in the "Status" section.
Diagram showing the wiring of the battery level detection circuit
My code comes with two animations which replicate scenes from the movie; the eye movement Wall-E does when booting-up, and a sequence of motions as Wall-E inquisitively looks around. From version 2.7 of the code, I've now made it easier to add your own servo motor animations so that you can make your Wall-E do other movements...
- Open up the file
animations.ino
, which is located in the same folder as the main Arduino sketch. - Each animation command consists of the positions you want each of the servo motors to move to, and the amount of time the animation should wait until moving on to the next instruction.
- You can add a new animation by inserting an extra
case
section into the switch statement. You should slot your extra code into the space above thedefault
section. For example:case 3: // --- Title of your new motion sequence --- // time,head,necT,necB,eyeR,eyeL,armL,armR queue.push({ 12, 48, 40, 0, 35, 45, 60, 59}); queue.push({1500, 48, 40, 20, 100, 0, 80, 80}); // Add as many additional movements here as you need to complete the animation // queue.push({time, head rotation, neck top, neck bottom, eye right, eye left, arm left, arm right}) break;
- The time needs to be a number in milliseconds (for example, 3.5 seconds = 3500)
- The servo motor position commands need to be an integer number between 0 to 100, where
0 = LOW
and100 = HIGH
servo position as calibrated in thewall-e_calibration.ino
sketch. - If you want to disable a motor for a specific move, you can use -1.
- Setup the Raspberry Pi to run the latest version of Raspberry Pi OS (Raspbian) - Full. The setup instructions can be found on the Raspberry Pi website.
- Open the command line terminal on the Raspberry Pi.
- Ensure that the package list has been updated (this may take some time):
sudo apt update
- Install Flask - this is a Python framework used to create web servers:
- Ensure that pip is installed:
sudo apt install python3-pip
- Install Flask and its dependencies:
sudo pip3 install flask
- Ensure that pip is installed:
- (Optional) The Full version of Raspbian includes these packages by default, but if you are using a different OS (for example the Lite version), you will need to run these commands:
sudo apt install git libsdl1.2 libsdl-mixer1.2 sudo pip3 install pygame pyserial
- Clone repository into the home directory of the Raspberry Pi:
cd ~ git clone https://github.com/chillibasket/walle-replica.git
- Set the web server password:
- Open app.py:
nano ~/walle-replica/web_interface/app.py
- On line 20 of app.py where is says
put_password_here
, insert the password you want to use for the web interface.
- Open app.py:
- (Optional) Change the default audio directory and location of the script used to start/stop the video stream.
- If you followed the steps above exactly, there is no need to do this. However, if you want to move the web-interface files to a different directory on the Raspberry Pi, you will need to change the location where the program will look for the audio files.
- On line 23 of app.py, type the directory where the audio files are located. Ensure that the directory location ends with a forward slash:
/
. - On line 22 of app.py, the location of the script used to start and stop the video camera stream can be modified.
- Connect to the Arduino/micro-controller:
- Plug the Arduino/micro-controller into the USB port of the Raspberry Pi.
- If you would like the serial port used by the Arduino to be selected by default in the web-interface, you can set a preferred serial port device in the code. Go to line 21 of app.py and replace the text "ARDUINO" with the name of your device. The name must match the one which appears in the drop-down menu in the "Settings" tab of the web-interface.
- Press
CTRL + O
to save andCTRL + X
to exit the nano editor.
- To determine the current IP address of the Raspberry Pi on your network, type the command:
hostname -I
- To start the server:
python3 ~/walle-replica/web_interface/app.py
- To access the web interface, open a browser on any computer/device on the same network and type in the IP address of the Raspberry Pi, follow by
:5000
. For example192.168.1.10:5000
- To stop the server press:
CTRL + C
- To start controlling the robot, you first need to start serial communication with the Arduino. To do this, go to the
Settings
tab of the web-interface, select the correct serial port from the drop-down list and press on theReconnect
button.
- If you are using the Official Raspberry Pi camera, you will first need to enable the camera in
sudo raspi-config
. In the config screen which appears, navigate to “Interface Options” > “Camera” > “Enable”. - Install mjpg-streamer - this is used to stream the video to the webserver. A good description of the installation procedure is described here. Complete the Install & Setup steps, as well as creating the Auto Start Manager Script. Stop when you reach the Start on Boot section.
- Make sure that the manager script you created has the correct name and is in the correct directory:
/home/pi/mjpg-streamer.sh
. If you want the save the script in a different location, you need to update line 22 of app.py. - To make the script executable by the web-server, run this command in the terminal:
chmod +x /home/pi/mjpg-streamer.sh
- Create a
.service
file which is used to start the web interface:nano ~/walle.service
- Paste the following text into the file:
[Unit] Description=Start Wall-E Web Interface After=network.target [Service] WorkingDirectory=/home/pi/walle-replica/web_interface ExecStart=/usr/bin/python3 app.py Restart=always StandardOutput=syslog StandardError=syslog SyslogIdentifier=walle User=pi [Install] WantedBy=multi-user.target
- Press
CTRL + O
to save andCTRL + X
to exit the nano editor. - Copy this file into the startup directory using the command:
sudo cp ~/walle.service /etc/systemd/system/walle.service
- To enable auto-start, use the following command:
sudo systemctl enable walle.service
- The web interface should now automatically start when the Raspberry Pi is turned on. You can also manually start and stop the service using the commands:
sudo systemctl start walle.service
andsudo systemctl stop walle.service
- By default the Raspberry should automatically select whether to output audio to the HDMI port or the headphone jack. However, you can ensure that it always uses the headphone jack with the following command:
amixer cset numid=3 1
- Make sure that all the sound files you want to use are of type
*.ogg
. Most music/sound editors should be able to convert the sound file to this format. - Change the file name so that it has the following format:
[group name]_[file name]_[length in milliseconds].ogg
. For example:voice_eva_1200.ogg
. In the web-interface, the audio files will be grouped using the "group name" and sorted alphabetically. - Upload the sound file to Raspberry Pi in the following folder:
~/walle-replica/web_interface/static/sounds/
- All the files should appear in the web interface when you reload the page. If the files do not appear, you may need to change the privileges required to access the folder:
sudo chmod -R 755 ~/walle-replica/web_interface/static/sounds
If you would like to control the robot outdoors or at conventions, there may not be any safe WiFi networks you can connect to. To overcome this issue and eliminate the need for any external networking equipment, the Raspberry Pi can broadcast its own WiFi network. You can then connect the computer/phone/tablet you are using to control the robot directly to this network.
To set up the WiFi hotspot, we will use the RaspAP project which takes care of all the configuration and tools to get the system working. The following instructions are based on their quick installation guide:
- Update Raspian, the kernel and firmware (and then reboot):
sudo apt-get update sudo apt-get dist-upgrade sudo reboot
- Ensure that you have set the correct WiFi country in raspi-config’s Localisation Options:
sudo raspi-config
- Run the quick installer:
curl -sL https://install.raspap.com | bash
- For the first few yes/no prompts which will appear during the install, type “y” (yes) to accept all of the recommended settings. The final two prompts (Ad Blocking and the next one) are not required so you can type “n” (no) for those.
- Reboot the Raspberry Pi again to implement the changes:
sudo reboot
- Now the Raspberry Pi should be broadcasting a WiFi network with the following details:
- SSID (wifi name):
raspi-webgui
- Password:
ChangeMe
- SSID (wifi name):
- After connecting to the WiFi network from a your computer, phone or tablet, the Wall-E web-interface can be opened by typing this address into your browser:
http://10.3.141.1:5000
- (Recommended) To change the WiFi name and password, go to the WiFi configuration webpage at:
http://10.3.141.1
. The default username isadmin
and password issecret
.- Click on “Hotspot” in the left sidebar. In the “Basic” tab you can change the WiFi network name, while the WiFi password can be changed in the “Security” tab.
- To change the admin password for the interface used to manage the WiFi settings, click on the “Admin” icon in the top-right of the interface.
- Updated instructions of how to set up a WiFi hotspot on the Raspberry Pi.
- Added offline Lato font files to prevent errors when running the web-interface while disconnected from the internet.
- Added a soft servo start function to the main Wall-E sketch and the servo calibration sketch. This prevents the servos from jumping as violently on startup.
- Changed the data-type of the animation queue to reduce the amount of dynamic memory required. Also updated the Queue class so that the buffer memory can be declared globally; this means the compiler can keep track of how much memory the queue actually uses.
- Moved the preset servo animations into a separate file, to make it easier to add your own animations.
- Minor bug fixes of the
Queue.hpp
andMotoController.hpp
classes. - Updated commenting of code to make it more consistent.
- Added gamepad support; any controller can now be used (such as the Xbox or PlayStation controllers) to puppet the robot.
- Improved serial port handling; in the settings tab, all of the available serial ports are listed in a drop-down menu.
- New status indicators are now shown below the video stream. They visualise whether the Arduino and/or gamepad are connected.
- Added support for battery level detection in both the Arduino code and the Raspberry Pi web interface.
- Fixed the bug where the virtual joystick no longer worked properly when the window was resized.
- Plus many other bug fixes!
- Restructured the web-interface to make it display more nicely on mobile devices; fancy icons are now used!
- Added manual servo control - this allows individual servos to be controlled directly from the web-interface.
- Improved error handling - error messages are now consistently displayed in a pop-up at the bottom of the page.
- Added instructions about how to automatically start server on boot to the Readme.
- Fixed some bugs related to sound playback.
- Added 2 sample sound files, which ensures that the sound directory is included in the git files.
- Added wall-e_calibration.ino, with which the maximum and minimum pulse widths of the servo motors can be calibrated.
- Updated wall-e.ino to use relative coordinates rather than absolute servo pulse widths for the animation presets. This allows the servo calibration data to be used to ensure the movements are the same on all variants of the robot.