Balancing Plate Game - Ramy Mounir - MAKE Course!

19,749

213

38

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.

Attachments

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.

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!

Tech Contest

Runner Up in the
Tech Contest

Robotics Contest

Runner Up in the
Robotics Contest

1 Person Made This Project!

Recommendations

  • Game Design: Student Design Challenge

    Game Design: Student Design Challenge
  • Big and Small Contest

    Big and Small Contest
  • Make It Bridge

    Make It Bridge

38 Comments

0
zzmars278
zzmars278

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!



0
mtpc.amilcar
mtpc.amilcar

Question 3 years ago

Hi,
Could you update the solidwork files? The Box file was missing, I Try to replay this proyect

2019-11-01 (5)_LI.jpg
0
dpham11
dpham11

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

0
dcs3473
dcs3473

4 years ago

Anyone have the complete files and possibly in STL format? The ones here are missing pieces.

0
GuilhermeL14
GuilhermeL14

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!

0
ramymounir
ramymounir

Reply 7 years ago

Sure man, Sorry for the delay.

Check you inbox :) !

0
crestr25
crestr25

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!!

0
robertbahnsen95
robertbahnsen95

Reply 7 years ago

Could you also send me the files i am trying to build your model as well

0
AglioOlio
AglioOlio

5 years ago

I have problem with "box" file...

So could please send me a box file?

lee3534255@naver.com

0
ErickR50
ErickR50

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

0
RANDOM KNOWLEDGE
RANDOM KNOWLEDGE

5 years ago

can you send me a pm, and send the files or the box to please.

0
AglioOlio
AglioOlio

5 years ago

Where should I attach MPU6050?
Right under the plate?

0
s121
s121

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 ...

0
Daniyal Shamsi
Daniyal Shamsi

6 years ago

What is the use of the photocell????

0
DidierM3
DidierM3

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

0
Unsafe At Any Speed
Unsafe At Any Speed

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!

0
ramymounir
ramymounir

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.