SlideShare a Scribd company logo
1 of 21
Download to read offline
Our project is a small car based on Arduino
platform which can be controlled using
Bluetooth and a Android app.
Introduction
Project Reveiw
Blutooth Controlled
Line Follower
Components
Work Of Components
Connections
Connections
Setup Connection
Pin Connection
Power Connection
Coding
Arduino Code
Android App Code
Web code
Project Aim
In this project we have used a toy car for demonstration.
Here we have selected a RF toy car with moving left right
steering feature. After buying this car we have replaced its
RF circuit with our Arduino circuit. This car have two dc
RF circuit with our Arduino circuit. This car have two dc
motors at its front and rear side. Front side motor is used for
giving direction to car means turning left or right side (like
real car steering feature). And rear side motor is used for
driving the car in forward and backward direction. A
Bluetooth module is used to receive command from android
phone and Arduino UNO is used for controlling the whole
system.
This project consists of presenting a didactic robot from
a line-following Arduino robot car using the IR sensor
modules, the ultrasonic sensor among other
components, as well as the assembly of its mechanical
structure.
structure.
The project is basically constituted by a physical
structure similar to a simple vehicle, responsible for
supporting the electronic components that will process
the signal to make the robot move according to the path
it must follow. Figure 2 illustrates the robot's internal
region.
After developing few popular robotic projects like line
follower robot, edge avoiding robot, DTMF robot, gesture
controlled robot, etc. in this project we are going to develop
a bluetooth controlled robo car. Here we used a Bluetooth
module to control the car, and it is also an android based
application.
The concept of working of line follower is related to light.
We use here the behavior of light at the black and white
surfaces. When light falls on a white surface it is almost fully
reflected and in the case of a black surface light is
completely absorbed. This behavior of light is used in
building a line follower robot.
1. Toy Car
2. Arduino UNO with Cable
3 . Bluetooth Module
4. Gear Motor
5. Motor Driver
6. Motor Wheels
7. Jumper Wires
8. Battery
9. Some Led
9. Some Led
10. IR Sensors
11. Touch Sensors
12. LDR Sensors
13. PIR Sensors
14. Switch Sensor
15. Speaker
16. Bridge Rectifier
17. Simple Wires
18. Electrical instruments
19. Bluetooth Controller App
20. Android device
21. Arduino IDE
All parts word diffrent diffrent something like this.
* Toy Car
It's for design car and setup all parts.
* Arduino Board
The Arduino software is used to build the code for every project made using
any Arduino boards; it mostly uses the C/C++ language for its coding. Once
the code is ready, we have to just compile and upload it on the board to
make our project work. There are many types of Arduino boards like Arduino
Uno, Arduino Nano, Arduino USB, etc. In this project, we are going to use
the Arduino UNO board (Atmega 328p).
* Bluetooth Module
* Bluetooth Module
HC Bluetooth module consists two things one is Bluetooth serial interface
module and a Bluetooth adaptor. Bluetooth serial module is used for
converting serial port to Bluetooth.
* Gear Motor
We have used two geared motors at the rear of the line follower robot. These
motors provide more torque than normal motors and can be used for
carrying some load as well.
* Motor Driver
The L298N Motor Driver Module is responsible for providing the necessary
drive current to the motors of the robotic car. I have provided information
about L298N Module in an earlier project called Arduino DC Motor Control
using L298N.
* Motor Wheels
wheels used for car moving and simply its work.
* Jumper Wires
Jumper wires are simply wires that have connector pins at each end, allowing
them to be used to connect two points to each other without soldering.
them to be used to connect two points to each other without soldering.
Jumper wires are typically used with breadboards and other prototyping
tools in order to make it easy to change a circuit as needed. Fairly simple. In
fact, it doesn’t get much more basic than jumper wires. It is 3 type male to
male, female to female, female to male
* Battery
Battery is one of the most important thing in this project ! It's use for
current in circuit I use 3.7v battery 4pcs when these are connected to serise
conection then its work base on 14.8v and this power user in motor driver
and arduino.
* LED
In this project led used for light as front light, back light,
left light etc.
* IR Sensor
It's used for line follower black object detection. Its's not
working black surface and sun light
* Touch Sensor
It's used for light connection toggle on and off in arduino.
* LDR Sensor
It's used for known brightness like day or night.
* PIR Sensor
PIR sensors are most commonly used in motion-based detection,
such as in-home security systems. When a moving object that
generates infrared radiation enters the sensing range of the
detector, the difference in IR levels between the two pyroelectric
elements is measured. The sensor then sends an electronic signal
to an embedded computer, which in turn triggers an alarm.
* Switch Sensor
It's used for light connection toggle on and off in main circuit.
It's used for light connection toggle on and off in main circuit.
* Speaker
It's used for horn when car will going to reverse then its work.
* Bridge Rectifier
When battery will going to die then cahrging battery from bridge
rectifeir
* Simple Wires
Simple Wires are used to bear mechanical loads or electricity and
telecommunications signals and connectoins for motor and
battery etc.
* Electrical instruments
Electrical instruments are instruments that use the mechanical
movement of electromagnetic meter to measure voltage, power,
movement of electromagnetic meter to measure voltage, power,
current… Electrical technicians require electrical measurement
equipment to check the electrical activity and to detect the
presence of voltage or current. By using this instrument we can
measure electrical parameters such as voltage, frequency, current,
power factor, and resistance. Electrical measurements are
depended upon either current or voltage while measuring the
frequency we will be measuring the frequency of a current signal
or a voltage signal.
* Bluetooth Controller App
After installing app you need to open it and then search
Bluetooth device and select desired Bluetooth device. And
then configure keys. Here in this project we have used
Bluetooth controller app.
* Android device
* Android device
It's used for handling car from blutooth car app
* Arduino IDE
The open-source Arduino Software (IDE) makes it easy to
write code and upload it to the board. This software can be
used with any Arduino board.
•Setup Connection
In this connection is only simply like joining all part to toy car.
•* Pin or Physically Connection
Here, I want to tell one important point that, The code that will
be given should be uploaded before connection of the pins; else
you will face an error in uploading the code, so, just first copy the
you will face an error in uploading the code, so, just first copy the
code provided below and pasted in the Arduino software and
upload it to the board before the pin connections.
•* Power Connection
In this connection is electrical connection for battery and his
charge and bridge rectifeir connection.
In this coding part is three division first one
* Arduino Code
First install the Arduino software. Installation instructions
are very simple, you should not have any trouble with this
step.
The code at the master device, or the joystick is quite simple.
We just need to read the X and Y values of the joystick,
which actually regulate the speed of the motors, and send
which actually regulate the speed of the motors, and send
them via the serial port to the slave HC-05 Bluetooth device.
We can note here that the analog values of joystick from 0 to
1023 are converted into a values from 0 to 255 by diving them
by 4.
* Android App Code
Create a separate thread in your code to initiate a connection
using the MAC Address that we previously obtained. This
thread will manage what happens if a connection is
successfully established or failed to be established. It also
handles if we want to close the Bluetooth connection.
Create a new project with the empty activity template and
Create a new project with the empty activity template and
select the appropriate name for your app. For this app we will
create 2 activities and 2 Java classes :
*Web App Code
This web for all information of my project and ppt srs
and known my group members. If you have any problem
then contact our group member. click here for checking
my website.
This project's main motive is to expand the knowledge for smart
micro-controllers like Arduino, which is widely used in the latest
IoT technologies.
Making the use of Connectivity Modules like Bluetooth HC-05, to
understand the different modes of operating and communications
with the micro-controller board.
with the micro-controller board.
To get familiar with Codes and programs used for the controlling
of the Arduino Uno board.
Introductory project for Every Electronics And Electrical Student,
to get the working of the Arduino board and its software.
Ppt

More Related Content

What's hot

android app based home automation
android app based home automationandroid app based home automation
android app based home automation
Ashikur Rahman
 
Android Operated Wireless Robot Using 8051 MCU
Android Operated Wireless Robot Using 8051 MCUAndroid Operated Wireless Robot Using 8051 MCU
Android Operated Wireless Robot Using 8051 MCU
Kamal Pradhan
 
Paper presentation of mini project
Paper presentation of mini projectPaper presentation of mini project
Paper presentation of mini project
Jayashankar Gavvala
 

What's hot (20)

Digital home automation with arduino bluetooth
Digital home automation with arduino bluetoothDigital home automation with arduino bluetooth
Digital home automation with arduino bluetooth
 
Report Home automation using arduino
Report Home automation using arduinoReport Home automation using arduino
Report Home automation using arduino
 
Home automation System
Home automation SystemHome automation System
Home automation System
 
Arduino blueooth
Arduino blueoothArduino blueooth
Arduino blueooth
 
IRJET- Android based Home Automation using Bluetooth Technology
IRJET-  	  Android based Home Automation using Bluetooth TechnologyIRJET-  	  Android based Home Automation using Bluetooth Technology
IRJET- Android based Home Automation using Bluetooth Technology
 
Bluetooth based home automation using arduino presentaton
Bluetooth based home automation using arduino presentatonBluetooth based home automation using arduino presentaton
Bluetooth based home automation using arduino presentaton
 
Floor cleaning robot report vatsal shah_ec_7th sem
Floor cleaning robot report vatsal shah_ec_7th semFloor cleaning robot report vatsal shah_ec_7th sem
Floor cleaning robot report vatsal shah_ec_7th sem
 
Arduino final ppt
Arduino final pptArduino final ppt
Arduino final ppt
 
android app based home automation
android app based home automationandroid app based home automation
android app based home automation
 
Android Operated Wireless Robot Using 8051 MCU
Android Operated Wireless Robot Using 8051 MCUAndroid Operated Wireless Robot Using 8051 MCU
Android Operated Wireless Robot Using 8051 MCU
 
Questions & Answers related to home automation
Questions & Answers related to home automationQuestions & Answers related to home automation
Questions & Answers related to home automation
 
home/office automation
home/office automationhome/office automation
home/office automation
 
IRJET - Automatic Mechanism for LED Parameters Testing & Checking
IRJET -  	  Automatic Mechanism for LED Parameters Testing & CheckingIRJET -  	  Automatic Mechanism for LED Parameters Testing & Checking
IRJET - Automatic Mechanism for LED Parameters Testing & Checking
 
Summer training project
Summer training projectSummer training project
Summer training project
 
Shiv smart door ppt
Shiv smart door pptShiv smart door ppt
Shiv smart door ppt
 
Home automation system using arduino with android
Home automation system using arduino with androidHome automation system using arduino with android
Home automation system using arduino with android
 
Stage 0 seminar
Stage 0 seminarStage 0 seminar
Stage 0 seminar
 
Paper presentation of mini project
Paper presentation of mini projectPaper presentation of mini project
Paper presentation of mini project
 
Automatic Room Lights Controller Using Arduino & PIR Sensor
Automatic Room Lights Controller Using Arduino & PIR SensorAutomatic Room Lights Controller Using Arduino & PIR Sensor
Automatic Room Lights Controller Using Arduino & PIR Sensor
 
Arduino_Project_Report
Arduino_Project_ReportArduino_Project_Report
Arduino_Project_Report
 

Similar to Ppt

Speed and direction control of dc motor using android mobile application chan...
Speed and direction control of dc motor using android mobile application chan...Speed and direction control of dc motor using android mobile application chan...
Speed and direction control of dc motor using android mobile application chan...
chandan kumar
 
Arduino Based Voice Generator Text to Speech Robot
Arduino Based Voice Generator Text to Speech RobotArduino Based Voice Generator Text to Speech Robot
Arduino Based Voice Generator Text to Speech Robot
ijtsrd
 

Similar to Ppt (20)

ARDUINO.pptx
ARDUINO.pptxARDUINO.pptx
ARDUINO.pptx
 
Bluetooth controled robot
Bluetooth controled robotBluetooth controled robot
Bluetooth controled robot
 
Arduino Based Bluetooth Controlled Robotic Car
Arduino Based Bluetooth Controlled Robotic CarArduino Based Bluetooth Controlled Robotic Car
Arduino Based Bluetooth Controlled Robotic Car
 
Bluetooth controlled robot using arduino uno and HC-05
Bluetooth controlled robot using arduino uno and HC-05Bluetooth controlled robot using arduino uno and HC-05
Bluetooth controlled robot using arduino uno and HC-05
 
project2presentation.pptx
project2presentation.pptxproject2presentation.pptx
project2presentation.pptx
 
IRJET- Android based Home Automation using Bluetooth Technology
IRJET- Android based Home Automation using Bluetooth TechnologyIRJET- Android based Home Automation using Bluetooth Technology
IRJET- Android based Home Automation using Bluetooth Technology
 
Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdf
 
Project_report_voice_controlling_robot
Project_report_voice_controlling_robotProject_report_voice_controlling_robot
Project_report_voice_controlling_robot
 
IRJET - Fire Fighting Robot
IRJET - Fire Fighting RobotIRJET - Fire Fighting Robot
IRJET - Fire Fighting Robot
 
final.ppt
final.pptfinal.ppt
final.ppt
 
Speed and direction control of dc motor using android mobile application chan...
Speed and direction control of dc motor using android mobile application chan...Speed and direction control of dc motor using android mobile application chan...
Speed and direction control of dc motor using android mobile application chan...
 
Speed and direction control of dc motor using android mobile application chan...
Speed and direction control of dc motor using android mobile application chan...Speed and direction control of dc motor using android mobile application chan...
Speed and direction control of dc motor using android mobile application chan...
 
ROBOTIC CAR PPT (2).pptx
ROBOTIC CAR PPT (2).pptxROBOTIC CAR PPT (2).pptx
ROBOTIC CAR PPT (2).pptx
 
Design and implementation of an obstacle avoiding robot
Design and implementation of an obstacle avoiding robotDesign and implementation of an obstacle avoiding robot
Design and implementation of an obstacle avoiding robot
 
Bluetooth Home Automation System
Bluetooth Home Automation SystemBluetooth Home Automation System
Bluetooth Home Automation System
 
Automatic voice control wheelchair
Automatic voice control wheelchairAutomatic voice control wheelchair
Automatic voice control wheelchair
 
Mini Project ppt.pptx
Mini Project ppt.pptxMini Project ppt.pptx
Mini Project ppt.pptx
 
Arduino Based Voice Generator Text to Speech Robot
Arduino Based Voice Generator Text to Speech RobotArduino Based Voice Generator Text to Speech Robot
Arduino Based Voice Generator Text to Speech Robot
 
Robo wireless controll
Robo wireless controllRobo wireless controll
Robo wireless controll
 
PPT ON Arduino
PPT ON Arduino PPT ON Arduino
PPT ON Arduino
 

Recently uploaded

如何办理美国华盛顿大学毕业证(UW毕业证书)毕业证成绩单原版一比一
如何办理美国华盛顿大学毕业证(UW毕业证书)毕业证成绩单原版一比一如何办理美国华盛顿大学毕业证(UW毕业证书)毕业证成绩单原版一比一
如何办理美国华盛顿大学毕业证(UW毕业证书)毕业证成绩单原版一比一
avy6anjnd
 
John Deere Tractors 5415 Diagnostic Repair Service Manual.pdf
John Deere Tractors 5415 Diagnostic Repair Service Manual.pdfJohn Deere Tractors 5415 Diagnostic Repair Service Manual.pdf
John Deere Tractors 5415 Diagnostic Repair Service Manual.pdf
Excavator
 
一比一原版伯明翰城市大学毕业证成绩单留信学历认证
一比一原版伯明翰城市大学毕业证成绩单留信学历认证一比一原版伯明翰城市大学毕业证成绩单留信学历认证
一比一原版伯明翰城市大学毕业证成绩单留信学历认证
62qaf0hi
 
Abortion pills Dubai (+918133066128) Cytotec 200mg pills UAE Abudhabi
Abortion pills Dubai (+918133066128) Cytotec 200mg pills UAE AbudhabiAbortion pills Dubai (+918133066128) Cytotec 200mg pills UAE Abudhabi
Abortion pills Dubai (+918133066128) Cytotec 200mg pills UAE Abudhabi
Abortion pills in Kuwait Cytotec pills in Kuwait
 
CELLULAR RESPIRATION. Helpful slides for
CELLULAR RESPIRATION. Helpful slides forCELLULAR RESPIRATION. Helpful slides for
CELLULAR RESPIRATION. Helpful slides for
euphemism22
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN ABUDHABI,DUBAI MA...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN ABUDHABI,DUBAI MA...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN ABUDHABI,DUBAI MA...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN ABUDHABI,DUBAI MA...
Health
 
Top profile Call Girls In Ranchi [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Ranchi [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Ranchi [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Ranchi [ 7014168258 ] Call Me For Genuine Models We...
gajnagarg
 
如何办理多伦多大学毕业证(UofT毕业证书)成绩单原版一比一
如何办理多伦多大学毕业证(UofT毕业证书)成绩单原版一比一如何办理多伦多大学毕业证(UofT毕业证书)成绩单原版一比一
如何办理多伦多大学毕业证(UofT毕业证书)成绩单原版一比一
opyff
 
+97470301568>>buy vape oil,thc oil weed,hash and cannabis oil in qatar doha}}
+97470301568>>buy vape oil,thc oil weed,hash and cannabis oil in qatar doha}}+97470301568>>buy vape oil,thc oil weed,hash and cannabis oil in qatar doha}}
+97470301568>>buy vape oil,thc oil weed,hash and cannabis oil in qatar doha}}
Health
 
如何办理新西兰林肯大学毕业证(Lincoln毕业证书)成绩单原版一比一
如何办理新西兰林肯大学毕业证(Lincoln毕业证书)成绩单原版一比一如何办理新西兰林肯大学毕业证(Lincoln毕业证书)成绩单原版一比一
如何办理新西兰林肯大学毕业证(Lincoln毕业证书)成绩单原版一比一
opyff
 
如何办理莱斯大学毕业证(Rice毕业证)毕业证成绩单原版一比一
如何办理莱斯大学毕业证(Rice毕业证)毕业证成绩单原版一比一如何办理莱斯大学毕业证(Rice毕业证)毕业证成绩单原版一比一
如何办理莱斯大学毕业证(Rice毕业证)毕业证成绩单原版一比一
avy6anjnd
 

Recently uploaded (20)

如何办理美国华盛顿大学毕业证(UW毕业证书)毕业证成绩单原版一比一
如何办理美国华盛顿大学毕业证(UW毕业证书)毕业证成绩单原版一比一如何办理美国华盛顿大学毕业证(UW毕业证书)毕业证成绩单原版一比一
如何办理美国华盛顿大学毕业证(UW毕业证书)毕业证成绩单原版一比一
 
John deere 7200r 7230R 7260R Problems Repair Manual
John deere 7200r 7230R 7260R Problems Repair ManualJohn deere 7200r 7230R 7260R Problems Repair Manual
John deere 7200r 7230R 7260R Problems Repair Manual
 
John Deere Tractors 5415 Diagnostic Repair Service Manual.pdf
John Deere Tractors 5415 Diagnostic Repair Service Manual.pdfJohn Deere Tractors 5415 Diagnostic Repair Service Manual.pdf
John Deere Tractors 5415 Diagnostic Repair Service Manual.pdf
 
一比一原版伯明翰城市大学毕业证成绩单留信学历认证
一比一原版伯明翰城市大学毕业证成绩单留信学历认证一比一原版伯明翰城市大学毕业证成绩单留信学历认证
一比一原版伯明翰城市大学毕业证成绩单留信学历认证
 
Abortion pills Dubai (+918133066128) Cytotec 200mg pills UAE Abudhabi
Abortion pills Dubai (+918133066128) Cytotec 200mg pills UAE AbudhabiAbortion pills Dubai (+918133066128) Cytotec 200mg pills UAE Abudhabi
Abortion pills Dubai (+918133066128) Cytotec 200mg pills UAE Abudhabi
 
Is Your BMW PDC Malfunctioning Discover How to Easily Reset It
Is Your BMW PDC Malfunctioning Discover How to Easily Reset ItIs Your BMW PDC Malfunctioning Discover How to Easily Reset It
Is Your BMW PDC Malfunctioning Discover How to Easily Reset It
 
West Bengal Factories Rules, 1958.bfpptx
West Bengal Factories Rules, 1958.bfpptxWest Bengal Factories Rules, 1958.bfpptx
West Bengal Factories Rules, 1958.bfpptx
 
CELLULAR RESPIRATION. Helpful slides for
CELLULAR RESPIRATION. Helpful slides forCELLULAR RESPIRATION. Helpful slides for
CELLULAR RESPIRATION. Helpful slides for
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN ABUDHABI,DUBAI MA...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN ABUDHABI,DUBAI MA...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN ABUDHABI,DUBAI MA...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN ABUDHABI,DUBAI MA...
 
Housewife Call Girl in Faridabad ₹7.5k Pick Up & Drop With Cash Payment #8168...
Housewife Call Girl in Faridabad ₹7.5k Pick Up & Drop With Cash Payment #8168...Housewife Call Girl in Faridabad ₹7.5k Pick Up & Drop With Cash Payment #8168...
Housewife Call Girl in Faridabad ₹7.5k Pick Up & Drop With Cash Payment #8168...
 
01552_14_01306_8.0_EPS_CMP_SW_VC2_Notebook.doc
01552_14_01306_8.0_EPS_CMP_SW_VC2_Notebook.doc01552_14_01306_8.0_EPS_CMP_SW_VC2_Notebook.doc
01552_14_01306_8.0_EPS_CMP_SW_VC2_Notebook.doc
 
Top profile Call Girls In Ranchi [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Ranchi [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Ranchi [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Ranchi [ 7014168258 ] Call Me For Genuine Models We...
 
Is Your Mercedes Benz Trunk Refusing To Close Here's What Might Be Wrong
Is Your Mercedes Benz Trunk Refusing To Close Here's What Might Be WrongIs Your Mercedes Benz Trunk Refusing To Close Here's What Might Be Wrong
Is Your Mercedes Benz Trunk Refusing To Close Here's What Might Be Wrong
 
What Does It Mean When Mercedes Says 'ESP Inoperative See Owner's Manual'
What Does It Mean When Mercedes Says 'ESP Inoperative See Owner's Manual'What Does It Mean When Mercedes Says 'ESP Inoperative See Owner's Manual'
What Does It Mean When Mercedes Says 'ESP Inoperative See Owner's Manual'
 
JOHN DEERE 7200R 7215R 7230R 7260R 7280R TECHNICAL SERVICE PDF MANUAL 2680PGS...
JOHN DEERE 7200R 7215R 7230R 7260R 7280R TECHNICAL SERVICE PDF MANUAL 2680PGS...JOHN DEERE 7200R 7215R 7230R 7260R 7280R TECHNICAL SERVICE PDF MANUAL 2680PGS...
JOHN DEERE 7200R 7215R 7230R 7260R 7280R TECHNICAL SERVICE PDF MANUAL 2680PGS...
 
Marathi Call Girls Santacruz WhatsApp +91-9930687706, Best Service
Marathi Call Girls Santacruz WhatsApp +91-9930687706, Best ServiceMarathi Call Girls Santacruz WhatsApp +91-9930687706, Best Service
Marathi Call Girls Santacruz WhatsApp +91-9930687706, Best Service
 
如何办理多伦多大学毕业证(UofT毕业证书)成绩单原版一比一
如何办理多伦多大学毕业证(UofT毕业证书)成绩单原版一比一如何办理多伦多大学毕业证(UofT毕业证书)成绩单原版一比一
如何办理多伦多大学毕业证(UofT毕业证书)成绩单原版一比一
 
+97470301568>>buy vape oil,thc oil weed,hash and cannabis oil in qatar doha}}
+97470301568>>buy vape oil,thc oil weed,hash and cannabis oil in qatar doha}}+97470301568>>buy vape oil,thc oil weed,hash and cannabis oil in qatar doha}}
+97470301568>>buy vape oil,thc oil weed,hash and cannabis oil in qatar doha}}
 
如何办理新西兰林肯大学毕业证(Lincoln毕业证书)成绩单原版一比一
如何办理新西兰林肯大学毕业证(Lincoln毕业证书)成绩单原版一比一如何办理新西兰林肯大学毕业证(Lincoln毕业证书)成绩单原版一比一
如何办理新西兰林肯大学毕业证(Lincoln毕业证书)成绩单原版一比一
 
如何办理莱斯大学毕业证(Rice毕业证)毕业证成绩单原版一比一
如何办理莱斯大学毕业证(Rice毕业证)毕业证成绩单原版一比一如何办理莱斯大学毕业证(Rice毕业证)毕业证成绩单原版一比一
如何办理莱斯大学毕业证(Rice毕业证)毕业证成绩单原版一比一
 

Ppt

  • 1. Our project is a small car based on Arduino platform which can be controlled using Bluetooth and a Android app.
  • 2. Introduction Project Reveiw Blutooth Controlled Line Follower Components Work Of Components Connections Connections Setup Connection Pin Connection Power Connection Coding Arduino Code Android App Code Web code Project Aim
  • 3. In this project we have used a toy car for demonstration. Here we have selected a RF toy car with moving left right steering feature. After buying this car we have replaced its RF circuit with our Arduino circuit. This car have two dc RF circuit with our Arduino circuit. This car have two dc motors at its front and rear side. Front side motor is used for giving direction to car means turning left or right side (like real car steering feature). And rear side motor is used for driving the car in forward and backward direction. A Bluetooth module is used to receive command from android phone and Arduino UNO is used for controlling the whole system.
  • 4. This project consists of presenting a didactic robot from a line-following Arduino robot car using the IR sensor modules, the ultrasonic sensor among other components, as well as the assembly of its mechanical structure. structure. The project is basically constituted by a physical structure similar to a simple vehicle, responsible for supporting the electronic components that will process the signal to make the robot move according to the path it must follow. Figure 2 illustrates the robot's internal region.
  • 5. After developing few popular robotic projects like line follower robot, edge avoiding robot, DTMF robot, gesture controlled robot, etc. in this project we are going to develop a bluetooth controlled robo car. Here we used a Bluetooth module to control the car, and it is also an android based application.
  • 6. The concept of working of line follower is related to light. We use here the behavior of light at the black and white surfaces. When light falls on a white surface it is almost fully reflected and in the case of a black surface light is completely absorbed. This behavior of light is used in building a line follower robot.
  • 7. 1. Toy Car 2. Arduino UNO with Cable 3 . Bluetooth Module 4. Gear Motor 5. Motor Driver 6. Motor Wheels 7. Jumper Wires 8. Battery 9. Some Led 9. Some Led 10. IR Sensors 11. Touch Sensors 12. LDR Sensors 13. PIR Sensors 14. Switch Sensor 15. Speaker 16. Bridge Rectifier 17. Simple Wires 18. Electrical instruments 19. Bluetooth Controller App 20. Android device 21. Arduino IDE
  • 8. All parts word diffrent diffrent something like this.
  • 9. * Toy Car It's for design car and setup all parts. * Arduino Board The Arduino software is used to build the code for every project made using any Arduino boards; it mostly uses the C/C++ language for its coding. Once the code is ready, we have to just compile and upload it on the board to make our project work. There are many types of Arduino boards like Arduino Uno, Arduino Nano, Arduino USB, etc. In this project, we are going to use the Arduino UNO board (Atmega 328p). * Bluetooth Module * Bluetooth Module HC Bluetooth module consists two things one is Bluetooth serial interface module and a Bluetooth adaptor. Bluetooth serial module is used for converting serial port to Bluetooth. * Gear Motor We have used two geared motors at the rear of the line follower robot. These motors provide more torque than normal motors and can be used for carrying some load as well.
  • 10. * Motor Driver The L298N Motor Driver Module is responsible for providing the necessary drive current to the motors of the robotic car. I have provided information about L298N Module in an earlier project called Arduino DC Motor Control using L298N. * Motor Wheels wheels used for car moving and simply its work. * Jumper Wires Jumper wires are simply wires that have connector pins at each end, allowing them to be used to connect two points to each other without soldering. them to be used to connect two points to each other without soldering. Jumper wires are typically used with breadboards and other prototyping tools in order to make it easy to change a circuit as needed. Fairly simple. In fact, it doesn’t get much more basic than jumper wires. It is 3 type male to male, female to female, female to male * Battery Battery is one of the most important thing in this project ! It's use for current in circuit I use 3.7v battery 4pcs when these are connected to serise conection then its work base on 14.8v and this power user in motor driver and arduino.
  • 11. * LED In this project led used for light as front light, back light, left light etc. * IR Sensor It's used for line follower black object detection. Its's not working black surface and sun light * Touch Sensor It's used for light connection toggle on and off in arduino. * LDR Sensor It's used for known brightness like day or night.
  • 12. * PIR Sensor PIR sensors are most commonly used in motion-based detection, such as in-home security systems. When a moving object that generates infrared radiation enters the sensing range of the detector, the difference in IR levels between the two pyroelectric elements is measured. The sensor then sends an electronic signal to an embedded computer, which in turn triggers an alarm. * Switch Sensor It's used for light connection toggle on and off in main circuit. It's used for light connection toggle on and off in main circuit. * Speaker It's used for horn when car will going to reverse then its work. * Bridge Rectifier When battery will going to die then cahrging battery from bridge rectifeir
  • 13. * Simple Wires Simple Wires are used to bear mechanical loads or electricity and telecommunications signals and connectoins for motor and battery etc. * Electrical instruments Electrical instruments are instruments that use the mechanical movement of electromagnetic meter to measure voltage, power, movement of electromagnetic meter to measure voltage, power, current… Electrical technicians require electrical measurement equipment to check the electrical activity and to detect the presence of voltage or current. By using this instrument we can measure electrical parameters such as voltage, frequency, current, power factor, and resistance. Electrical measurements are depended upon either current or voltage while measuring the frequency we will be measuring the frequency of a current signal or a voltage signal.
  • 14. * Bluetooth Controller App After installing app you need to open it and then search Bluetooth device and select desired Bluetooth device. And then configure keys. Here in this project we have used Bluetooth controller app. * Android device * Android device It's used for handling car from blutooth car app * Arduino IDE The open-source Arduino Software (IDE) makes it easy to write code and upload it to the board. This software can be used with any Arduino board.
  • 15. •Setup Connection In this connection is only simply like joining all part to toy car. •* Pin or Physically Connection Here, I want to tell one important point that, The code that will be given should be uploaded before connection of the pins; else you will face an error in uploading the code, so, just first copy the you will face an error in uploading the code, so, just first copy the code provided below and pasted in the Arduino software and upload it to the board before the pin connections. •* Power Connection In this connection is electrical connection for battery and his charge and bridge rectifeir connection.
  • 16. In this coding part is three division first one
  • 17. * Arduino Code First install the Arduino software. Installation instructions are very simple, you should not have any trouble with this step. The code at the master device, or the joystick is quite simple. We just need to read the X and Y values of the joystick, which actually regulate the speed of the motors, and send which actually regulate the speed of the motors, and send them via the serial port to the slave HC-05 Bluetooth device. We can note here that the analog values of joystick from 0 to 1023 are converted into a values from 0 to 255 by diving them by 4.
  • 18. * Android App Code Create a separate thread in your code to initiate a connection using the MAC Address that we previously obtained. This thread will manage what happens if a connection is successfully established or failed to be established. It also handles if we want to close the Bluetooth connection. Create a new project with the empty activity template and Create a new project with the empty activity template and select the appropriate name for your app. For this app we will create 2 activities and 2 Java classes :
  • 19. *Web App Code This web for all information of my project and ppt srs and known my group members. If you have any problem then contact our group member. click here for checking my website.
  • 20. This project's main motive is to expand the knowledge for smart micro-controllers like Arduino, which is widely used in the latest IoT technologies. Making the use of Connectivity Modules like Bluetooth HC-05, to understand the different modes of operating and communications with the micro-controller board. with the micro-controller board. To get familiar with Codes and programs used for the controlling of the Arduino Uno board. Introductory project for Every Electronics And Electrical Student, to get the working of the Arduino board and its software.