This tutorial demonstrates how to build a pick and place robot controlled with your Android smartphone. We have built a mobile app using the MIT App Inventor platform. In this tutorial, we will talk about each part of this project separately. We will talk about:
- 1 How to Control a Servo Motor
- 2 How to Control a DC Motor
- 3 How to Use the Bluetooth Module
- 4 How to Control Your Robot with Your Mobile Phone
So I hope this tutorial covers all your needs to build your bot.
The ScenarioFirst of all, we must to know how the robot will take orders. We are using a Bluetooth module which will be connected to a mobile app, which we will build afterward. For now we need to know that we will send our command to the robot with our mobile using the Bluetooth connection.
- The kit requires some simple assembly, but it does take some time. Follow the instructions included with your kit for assembly,
At the end of the assembly it should look like this:
The Motor Shield allows you to talk with your motors. If you connect the motors directly to the Arduino board, it will start a fire! because every motor needs at least 80MA but the max current the digital Arduino pin can provide is 40MA, so DO NOT try to connect the motor directly to your Arduino board.
- The motor shield helps you to control the direction of your motor (e.g. move FORWARD, BACKWARD, and RELEASE).
- The Motor shield allows you to control up to 4 bi-directional DC motors with individual 8-bit speed selection (so, about 0.5% resolution).
You can solder some pin headers on the top of the shield to be able to use the Arduino pins.
You need to stick your motor shield above your Arduino board like this:
The Bluetooth module: it's the channel between the pilot and the robot to send orders and take actions.
It has 6 pins; we will use only the middle four pins (RX-TX-GND-+5):
We will connect:
- +5 on the Bluetooth module to the 5v on the Arduino
- GND on the Bluetooth module to the GND on the Arduino
- Rx on the Bluetooth module to the Tx on the Arduino
- Tx on the Bluetooth module to the Rx on the Arduino
NOTE: WHY Rx to Tx and Tx to Rx?
Because the Bluetooth module sends data (Tx) and the Arduino receives this Data (Rx).
One Sends And The Other Receives4) The Servo Motor has 3 wires: red (Positive), brown (Negative), yellow or orange (Signal).
Note: DO NOT connect the Positive and Negative of the Servo Motors to the 5V and GND of the Arduino board. The Arduino board will start a fire due to the high current absorbed by the motors; use the external battery.
- The Red wire to the Positive of the external battery
- The Brown wire to the Negative of the external battery
- The Orange wire to any digital (PWN) pin on the Arduino
NOTE: Don't forget to make the GND of the battery and the GND of the Arduino a common, make it by connecting each GND to each other.
5) The DC Motors
You need to solder some wires on the Motor Terminals to be able to use these motors.
The DC Motor has no polarity. There is no Positive and no Negative. If you reverse your motor connections, the motor's direction of movement will change.
After you solder the Motor Terminals, connect these terminals to the Motor Shield.
NOTE: In the Arduino code, I used Motor 1 and Motor 2 - not Motor 3 and Motor 4.
The SchematicHow to Connect the Robot Motors and the battery with the motor driver.
How to Connect the Arm servo Motors and the battery with the Arduino board.
How to Connect the bluetooth module with the Arduino board.
NOTE: disconnect(remove the RED WIRE +5 pin) the bluetooth module while uploading the code to the Arduino board. Then reconnect it back after the uploading process is done.
Comments