Introduction: Balancing Plate Game - Ramy Mounir - MAKE Course!
This instructable was created in fulfillment of the project requirement of the Makecourse at the University of South Florida (www.makecourse.com)
Hi,
My name is Ramy Mounir, and I'm a student maker enrolled in the MAKE course at the University of South Florida - Fall 2015. I used an arduino as a micro-controller to make a plate that can be controlled using servos. There are 3 operational modes for 0 - 2 number of players. The operational mode for 0 players is letting the plate balance itself no matter how you move the box, the plate will always be horizontal ! The mode for 1 player is using the joystick to keep the ball on the plate. The last mode is similar to the previous one; however, two players can use flash lights to move the plate.
In this instructable I will walk you through how I build this awesome project.
Step 1: Components
For this project you will need:
1x Arduino uno
1x Breadboard
1x joystick module
2x Servo motors
2x Photocells
1x 3-axis accelerometer/gyroscope (MPU 6050)
2x 330 ohm resistor
1x 9V battery pack with on/off switch
and don't forget the wire...
Step 2: 3D Printed Parts
I have attached the 3D parts modeled on solidworks. Tolerances are considered in all my parts. 3D print all the parts in PLA, and choose the color you want.
I used bolts and nuts to attach the servo mounts to the box, which was not necessary. Super Glue turns out to be stronger than the 3D printed parts, so use super glue to attach fixed parts.
Attach the parts using the dimensions in the assembly file.
Step 3: Control System
The arduino takes signals from the sensors in the red boxes and computes the pwm signals to actuators (servo motors in the green boxes). The servo motors control the plate orientation.
The actual signal from the accelerometer is compared against the desired value and multiplied by a constant proportional factor to move the servos.
The same proportional control system is applied for the photocells.
The joystick input signal to the arduino is mapped to output a suitable PWM signal. (no proportional control system is applied here)
Step 4: Wiring
The wiring is exactly the same as the attached image.
The photocells are wired in a voltage divider circuit with the 330 ohm resistor. (A0 and A1)
The accelerometer is wired to A4 and A5 (SDA and SCL).
The joystick is connected to A2 and A3.
The two servos are connected to PWM digital pins 3 and 5.
Step 5: Arduino Sketch
The commented arduino sketch is attached to this step.
The sketch is split into two tabs, the main tab and the functions tab.
The main tab is basically a switch case in the loop function. It calls for the mode checking function and goes to the right case based on what it gets back from that mode checking function.
The functions tab contains 5 functions:
setplane(); // this functions sets the plane horizontal in the setup function
checkbuttons(); // this functions checks to see which mode are we in. If the joystick is not in its normal position, it returns that appropriate case number. Similarly if it detects a light value greater than the specified value, its returns back a different case number. If nothing is detected, the default case will be activated.
followlight(); // keeps a specific distance between the photocell and the flashlight using a proportional control system on the error between desired and actual light value.
balance(); // does the same as followlight() but uses the accelerometer values instead of light values.
followjoystick(); // maps the input signal from joystick to the output pwm signal to servo motors.
Attachments
Step 6: Final Project
If you follow this instructable step by step, you should end up with a project like mine (see attached picture). If you have any question, please leave a comment. Have fun and good luck!

Runner Up in the
Tech Contest

Runner Up in the
Robotics Contest
1 Person Made This Project!
- SamerS15 made it!
38 Comments
6 weeks ago
Hi,
Could you update the solidwork files? A bunch of them
are missing, So I will be glad if you can help me on that.Thank you!
Question 3 years ago
Hi,
Could you update the solidwork files? The Box file was missing, I Try to replay this proyect
3 years ago on Introduction
Thank you so much for sharing this with us. I’ve been trying to find this project for awhile now and just found out about your post. I can’t wait to build this
4 years ago
Anyone have the complete files and possibly in STL format? The ones here are missing pieces.
7 years ago
Hi,
Could you update the solidwork files? A bunch of them are missing, I want to print that model as well. I would like to use what you've done into my final project at my university, I want to study some position control techniques. So I will be glad if you can help me on that.Thank you!
Reply 4 years ago
我有“盒子”文件的问题...
那么请给我寄一个盒子文件?
djx.jason0105@gmail.com
谢谢!
Reply 7 years ago
Sure man, Sorry for the delay.
Check you inbox :) !
Reply 7 years ago
could you send me the files please i really want to base a design on this model for my university. thanks a lot!!
Reply 7 years ago
Could you also send me the files i am trying to build your model as well
5 years ago
I have problem with "box" file...
So could please send me a box file?
lee3534255@naver.com
Reply 4 years ago
我有“盒子”文件的问题...
那么请给我寄一个盒子文件?
djx.jason0105@gmail.com
Thank you!
4 years ago
我有“盒子”文件的问题...
那么请给我寄一个盒子文件?
djx.jason0105@gmail.com
5 years ago
hola amigo tampoco me aparece el archivo de la caja, me la podrías enviar esta padre tu proyecto.
correo:cutsalaices@hotmail.com
5 years ago
can you send me a pm, and send the files or the box to please.
5 years ago
Where should I attach MPU6050?
Right under the plate?
5 years ago
Hello
When I open the solidworks files I have a problem with the box assembly...
Could you send me this complete assembly ?
Thanks for help ...
6 years ago
What is the use of the photocell????
6 years ago
Hi
When I open the solidworks files I have a problem with the box assembly...
Could you send me this complete assembly ?
Thanks
7 years ago
This would make a great car cup holder.
Just mount it on the dash and have it sense the car's motion.
It should hold the cup perfectly steady!
Reply 7 years ago
yea that would work but it wont take any vertical acceleration unless you make it with 4 servos! The Accelerometer is 3-axes so you can still use the same accelerometer.