Friday, March 29, 2024

Soccer Robot

By K.V.S. Phani Rohith. The author was a third-year B.Tech student of electronics and communication engineering at R.V.R. & J.C. College of Engineering, Guntur, at the time of publishing the article

This soccer robot can move forward, reverse, forward-left, forward-right, reverse-left and reverse-right with the help of an Android phone. The speed of its movement is controlled by the angle of rotation of the phone. The robot also kicks a ball when the phone is shaken.

Soccer Robot Circuit

Shown below is the circuit of the soccer robot. The circuit is built around Arduino UNO board (BOARD1), servo motor (connected at CON5), Bluetooth module JY MCU BT, motor driver L293D (IC1) and two DC motors (M1 and M2).

Circuit of the soccer robot
Circuit of the soccer robot

The circuit uses two 9V batteries; one for the Arduino board (BOARD1) and the other for DC motors. The 5V regulated supply for rest of the circuit is provided by Arduino board itself. LED on BOARD1 indicates the presence of power supply.

All new smartphones contain an accelerometer sensor. A phone with an accelerometer can detect the angle it is being held at. It can also detect rotation and motion gestures such as swinging, shaking and flicking. The accelerometer can detect whether the phone is upright or sideways, and automatically rotate the graphics on the screen accordingly. Its another common use is in controlling games and other applications (such as music player) by moving or shaking the phone. When the phone is rotated in different directions, x,y,z values of accelerometer sensor change. The android app for this project sends these x,y,z values to the robot via Bluetooth.

Bluetooth module
Bluetooth module

Bluetooth module

The Bluetooth module used in this project is JY MCU BT, which can be connected to any device via built-in UART interface. It can communicate with other Bluetooth-enabled devices such as mobile phones, handheld computers and laptops. The module runs on a 3.6V to 6V supply.

- Advertisement -

Servo motor

A servo motor is used for kicking the ball in this project. Servos are extremely useful in robotics. The motors are small but extremely powerful for their size. A servo motor mainly comprises a DC motor, gear system, position sensor (which is generally a potentiometer) and control electronics as shown in.

Servo motor components
Servo motor components

The DC motor is connected with a gear mechanism which provides feedback to a position sensor. The potentiometer allows the control circuitry to monitor the current angle of the servo motor. If the shaft is at correct angle, the motor shuts off. If the circuit finds that the angle is incorrect, it keeps the motor on until the angle is corrected. A normal servo is used to control an angular motion up to 180 degrees. servos are incapable of turning further due to a mechanical stop built on the main output gear.

Servo positions
Servo positions

The control wire is used to communicate the angle. The angle is determined by the duration of a pulse that is applied to the control wire. This is called pulse-coded modulation. The servo expects to see a pulse every 20 milliseconds. The length of the pulse will determine how far the motor turns. For example, a 1.5-millisecond pulse could turn the motor to 90-degree position (often called the neutral position). If the pulse is shorter than 1.5 milliseconds, the motor would turn lesser. If the pulse is longer than 1.5 milliseconds, the shaft would turn closer to 180 degrees as shown above.

- Advertisement -

Servo motor arm is connected to a metal or wooden piece, so that the servo arm acts as a leg to kick the ball.

Arduino UNO board

Arduino is an open source electronics prototyping platform based on flexible, easy-to-use hardware and software. It is intended for artists, designers, hobbyists and anyone interested in creating interactive objects or environments.

Arduino UNO is a board based on ATmega328 microcontroller. It consists of 14 digital input/output pins, six analogue inputs, a USB connection for programming the on-board microcontroller, power jack, an in-circuit serial programming (ICSP) header and a reset button. The board is operated with a 16MHz crystal oscillator and contains everything needed to support the microcontroller. It is very easy to use as the user simply needs to connect it to a computer with a USB cable, or power it with an AC-to-DC adapter or battery, to get it started. The microcontroller on the board is programmed using Arduino programming language and Arduino development environment.

Pins 8 and 9 of BOARD1 are connected to pins Tx and Rx of the Bluetooth module, respectively. Pin 10 is connected to PULSE pin of servo motor to control the angle of movement. Pins 2 through 7 of BOARD1 are output pins that are connected to IC1 for controlling the motors. Pins 2, 3 and 4 of BOARD1 are connected to IN3, EN2 and IN4 of IC1 to control motor M1, and pins 5, 6 and 7 are connected to IN1, EN1 and IN2 of IC1 to control motor M2. EN1 and EN2 are used to control speeds of the motors.

The app sends the sensed data from accelerometer of the phone to the robot via Bluetooth. Data transmitted by the phone is received by the Bluetooth module on the robot. The received data is fed to pin 8 of BOARD1. The microcontroller on BOARD1 processes the received data and drives the motors accordingly. The robot also sends back the status. In the app, you can see a label named ‘Robot’s status’ below which you can see the direction in which the robot is moving and also the kick status.

Software

The software (soccer.ino) for the soccer robot is written in Arduino programming language. The Arduino UNO is programmed using Arduino IDE software. Atmega328 on Arduino UNO comes with a boot loader that allows you to upload new code to it without the use of an external hardware programmer. It communicates using the STK500 protocol. You can also bypass the boot loader and program the microcontroller through the ICSP header, but using boot loader programming is quick and easy. Select the correct board from ‘Tools→Board’ menu in Arduino IDE and burn the program (sketch) through standard USB port in the computer.

Change the kick and initial position (in degrees) of soccer robot’s leg in the source program corresponding to your mechanical arrangement of the leg in the robot as shown below:
Int kick = 50
Int neutral = 170

The procedure for installing the Android app on the phone is as follows:

  1. Download the app SoccerRobot.apk and copy it to your Android smartphone or tablet.
  2. Run the file and it will ask you ‘complete action using,’ click on ‘package installer’ and then click ‘install.’

Please note that you have to also change the baud rate of the Bluetooth module on the robot to 57600 using AT command, if it is not set like that already.

Download the PCB and component layout PDFs: click here

Download source code: click here

Construction and testing

A single-side PCB for the soccer robot & and its component layout is shown below. Assemble the circuit on the recommended PCB to save time and minimise assembly errors. Use IC base for motor driver IC1.

test points

Follow the steps below to get the robot running for the first time:

  1. Switch on the power supply to the robot by connecting the batteries.
  2. Pair the Bluetooth module with an Android phone. While pairing, it will ask you the password; type ‘1234’ which is the default password of Bluetooth module.
  3. Run the already installed app in the phone.
  4. Press ‘SELECT’ (make sure the Bluetooth is on), then select Bluetooth module from the list of scanned Bluetooth devices and press ‘CONNECT.’ It will take 5-10 seconds to connect. After connecting, it will notify you that Bluetooth is connected. Now it is time to play soccer through your phone.
  5. You can control the robot by rotating the phone; ‘Forward,’ ‘Backward,’ ‘Left,’ ‘Right’ and ‘Stop.’
  6. Kick the ball by shaking the phone.

To test the circuit for proper functioning, verify correct 5V supply for the circuit at TP1 with respect to TP0. Also check the 9V supply for the motors at TP2. Transmitted data by the Bluetooth can be observed at TP3. The controlling pulses for the servo motor can be seen at TP4.

If you are looking for the difference between Microprocessor and Microcontroller, you can read it here.

This article is a part of the Top 15+ Microcontroller Projects. If you want to read more projects based on Microcontroller, can go through this article.


The article was first published in January 2015 and has recently been updated.

5 COMMENTS

SHARE YOUR THOUGHTS & COMMENTS

Electronics News

Truly Innovative Tech

MOst Popular Videos

Electronics Components

Calculators

×