SlideShare a Scribd company logo
1 of 14
Name of Institution

A
project report
on
Line follower robot
SUBMITTED BY:
PRIYA HADA
B.TECH ECE (SECTION –B)
VTH SEM
1
CONTENTS

Name of Institution

OBJECTIVE
WHAT IS A LINE TRACER?
 ITS COMPONENTS
• LM324
• IC7805
• MICROPROCESSOR
• L293D
BLOCK DIAGRAM
WORKING
ECONOMIC IMPORTANCE

2
INTRODUCTION

Name of Institution

• What is a line follower?
Line follower is a machine that can follow a path. The path can be visible like a
black line on a white surface (or vice-versa) or it can be invisible like a
magnetic field.

•

What is the need to build a line follower?
Sensing a line and maneuvering the robot to stay on course, while constantly
correcting wrong moves using feedback mechanism forms a simple yet
effective closed loop system.
AT89C51

Name of Institution

4
LM324

Name of Institution

IC LM324 is a comparator IC. It is a MAIN BRAIN of line tracer.
The Ports takes two voltage inputs at positive and negative pin
respectively, compares them and gives a digital output in the form
of logical HIGH or logical LOW.

5
Name
IR Transmitter & Receiver of Institution

•

•

IR TRANSMITTER ( EMITTING DIODE)
The IR LED emitting infrared light is put on in
the transmitting unit. IR or VISIBLE light is
emitted from the emitter
This emitted light strikes the surface and gets
reflected back. If the surface is white, more
intensity of light gets reflected and for black
surface very less intensity of light is reflected.

IR RECEIVER (PHOTODETECTOR)
Used to detect the intensity of light reflected.
The corresponding analog voltage is induced
based on the intensity of reflected light, which
further compared by comparator and output
send as 0 or 1.
IC 7805

Name of Institution

 A voltage regulator is an electrical
regulator designed to automatically maintain
a constant voltage level.
It converts a positive voltage (7-29V) to
+5 volts.
Heat sink provided in the center to release
heat generated due to drop across the IC.

 Input voltage of about 5 to 18 V is given,
Ground is 0 V and regulated output of +5V.
7
L293D (H-Bridge)
Name of Institution

•

Motors are arranged in a fashion
called H-Bridge.

•

H-Bridge-It is an electronic circuit
which enables a voltage to be applied
across a load in either direction.

•

It allows a circuit full control over a
standard electric DC motor. That is,
with an H-bridge, a microcontroller,
logic chip, or remote control can
electronically command the motor to
go forward, reverse, brake, and coast.
WORKING PRINCIPLE Name of Institution

The robot uses IR(infrared) sensors to sense the line.
Output of the sensors is an analog signal which
depends on the amount of light reflected back.
This analog signal is given to the comparator to
produce 0s and 1s which are then fed to the uC.
Then microcontroller decides the position of robot in
left or right direction.
WORKING PRINCIPLE

Name of Institution

When a sensor is on the black line it reads 0 and when it is on the bright surface it
reads 1.

When left sensor comes in white(for black line
tracer) region then right motor stops while left
motor continue to move so that right turn takes
place and robot returns on white line.
First sensor which is to the right will become
low as that sensor will be facing the black line and
the remaining sensors response will be high. i.e.
the right wheel is held constant and the left wheel
is made to move freely until the response from the
middle sensor becomes low .
When right sensor comes in white region then
left motor stops while right motor continue to
move so that left turn takes place and robot returns
on white line.
WORKING PRINCIPLE( contd…)

Name of Institution

The middle sensor will always be on the line and
as the line is black in color, it will not reflect the
emitted radiation back and the response of the
sensor will be low and the response of the
remaining two sensors will be high as they will be
on the bright surface. When both sensors are on
black line then robot moves forward.

If all the three sensors will be on brighter
surface then they all will be high and as no line is
detected , robot move in a circular motion until
line is found.

11
Name of Institution

APPLICATION

ADVANTAGES

DISADVANTAGES

Industrial automated
equipment carriers.

The robot must be capable
of following a line.

LFR can move on a fixed track
or path.

Automated cars.

 Insensitive to environment
factors like noise and
lightning.

It requires power supply.

Tour guides in museums
and other similar
applications.

It should be capable of
taking various degrees of
turns.

Lack of speed control makes the
robot unstable at times.

Deliver the mail
within the office building

The color of the line must
not be a factor as long as it is
darker than the surroundings.

Choice of line is made in the
hardware abstraction and cannot
be changed by software.

Deliver medications in a
hospital.

12
MICROCONTROLLER CODE Name of Institution
#include<regx51.h>
void main()
{
while(1)
{
if(P1_0==0&&P1_1==0)
{
P2=0x00;
}
if(P1_0==1&&P1_1==1)
{
P2=0xF5;
}
if(P1_0==0&&P1_1==1)
{
P2=0xF4;
}
if(P1_0==1&&P1_1==0)
{
P2=0xF1;
}

Keil software is
used for
microcontroller
code and
proteus for
simulation.

}
}

13
Name of Institution

More Related Content

What's hot

Line Following Robot Presentation
Line Following Robot PresentationLine Following Robot Presentation
Line Following Robot PresentationOli ullah
 
Obstacle avoidance robot
Obstacle avoidance robotObstacle avoidance robot
Obstacle avoidance robotRahuldey1991
 
Line Following Robot
Line Following RobotLine Following Robot
Line Following RobotSelf-employed
 
Final report obstacle avoiding roboat
Final report obstacle avoiding roboatFinal report obstacle avoiding roboat
Final report obstacle avoiding roboatShubham Thakur
 
Line follower robot 5th semster
Line follower robot 5th semsterLine follower robot 5th semster
Line follower robot 5th semsteraqeel shoukat
 
Introduction to arduino
Introduction to arduinoIntroduction to arduino
Introduction to arduinoAhmed Sakr
 
Line Following Robot Using Arduino
Line Following Robot Using ArduinoLine Following Robot Using Arduino
Line Following Robot Using ArduinoSamuel Manoj Palani
 
Traffic light controller
Traffic light controllerTraffic light controller
Traffic light controllerRkrishna Mishra
 
Line follower robot
Line follower robotLine follower robot
Line follower robotANU_110
 
Operational amplifier
Operational amplifierOperational amplifier
Operational amplifierUnsa Shakir
 
line following robot
line following robotline following robot
line following robotRehnaz Razvi
 
Obstacle Avoidance ROBOT using ARDUINO
Obstacle Avoidance ROBOT using ARDUINOObstacle Avoidance ROBOT using ARDUINO
Obstacle Avoidance ROBOT using ARDUINOjovin Richard
 
Motor driver IC L293D
Motor driver IC L293DMotor driver IC L293D
Motor driver IC L293DAmit kumar
 
Obstacle Avoiding Robot Report Robot23
Obstacle Avoiding Robot Report Robot23Obstacle Avoiding Robot Report Robot23
Obstacle Avoiding Robot Report Robot23Abhijeet kapse
 
LINE FOLLOWER ROBOT
LINE FOLLOWER ROBOTLINE FOLLOWER ROBOT
LINE FOLLOWER ROBOTMohit Kumar
 
Password based door locking system
Password based door locking systemPassword based door locking system
Password based door locking systemArjun Singh
 

What's hot (20)

Line Follower Robot
Line Follower RobotLine Follower Robot
Line Follower Robot
 
Line follower robot
Line follower robotLine follower robot
Line follower robot
 
Line Following Robot Presentation
Line Following Robot PresentationLine Following Robot Presentation
Line Following Robot Presentation
 
Obstacle avoidance robot
Obstacle avoidance robotObstacle avoidance robot
Obstacle avoidance robot
 
Line Following Robot
Line Following RobotLine Following Robot
Line Following Robot
 
Final report obstacle avoiding roboat
Final report obstacle avoiding roboatFinal report obstacle avoiding roboat
Final report obstacle avoiding roboat
 
Line follower robot 5th semster
Line follower robot 5th semsterLine follower robot 5th semster
Line follower robot 5th semster
 
OBSTACLE AVOIDING CAR
OBSTACLE AVOIDING CAROBSTACLE AVOIDING CAR
OBSTACLE AVOIDING CAR
 
Obstacle avoiding robot.doc
Obstacle avoiding robot.docObstacle avoiding robot.doc
Obstacle avoiding robot.doc
 
Introduction to arduino
Introduction to arduinoIntroduction to arduino
Introduction to arduino
 
Line Following Robot Using Arduino
Line Following Robot Using ArduinoLine Following Robot Using Arduino
Line Following Robot Using Arduino
 
Traffic light controller
Traffic light controllerTraffic light controller
Traffic light controller
 
Line follower robot
Line follower robotLine follower robot
Line follower robot
 
Operational amplifier
Operational amplifierOperational amplifier
Operational amplifier
 
line following robot
line following robotline following robot
line following robot
 
Obstacle Avoidance ROBOT using ARDUINO
Obstacle Avoidance ROBOT using ARDUINOObstacle Avoidance ROBOT using ARDUINO
Obstacle Avoidance ROBOT using ARDUINO
 
Motor driver IC L293D
Motor driver IC L293DMotor driver IC L293D
Motor driver IC L293D
 
Obstacle Avoiding Robot Report Robot23
Obstacle Avoiding Robot Report Robot23Obstacle Avoiding Robot Report Robot23
Obstacle Avoiding Robot Report Robot23
 
LINE FOLLOWER ROBOT
LINE FOLLOWER ROBOTLINE FOLLOWER ROBOT
LINE FOLLOWER ROBOT
 
Password based door locking system
Password based door locking systemPassword based door locking system
Password based door locking system
 

Similar to Line follower robot

Similar to Line follower robot (20)

Line of the system that follower Robot.pptx
Line of the system that follower Robot.pptxLine of the system that follower Robot.pptx
Line of the system that follower Robot.pptx
 
LINE FOLLOWER ROBOT | J4RV4I1010
LINE FOLLOWER ROBOT | J4RV4I1010LINE FOLLOWER ROBOT | J4RV4I1010
LINE FOLLOWER ROBOT | J4RV4I1010
 
340211628-Line-Follower-Robot-Presentation.pdf
340211628-Line-Follower-Robot-Presentation.pdf340211628-Line-Follower-Robot-Presentation.pdf
340211628-Line-Follower-Robot-Presentation.pdf
 
Line Follower Robot
Line Follower RobotLine Follower Robot
Line Follower Robot
 
Final presentation
Final presentationFinal presentation
Final presentation
 
Presentation maze solver robot
Presentation maze solver robotPresentation maze solver robot
Presentation maze solver robot
 
Presentation1
Presentation1Presentation1
Presentation1
 
Project PPT.pptx
Project PPT.pptxProject PPT.pptx
Project PPT.pptx
 
LINE FOLLOWER ROBOT
LINE FOLLOWER ROBOTLINE FOLLOWER ROBOT
LINE FOLLOWER ROBOT
 
Implementation of automatic railway platform
Implementation of automatic railway platformImplementation of automatic railway platform
Implementation of automatic railway platform
 
How to make a Line Follower Robot
How to make a Line Follower RobotHow to make a Line Follower Robot
How to make a Line Follower Robot
 
Robotics
RoboticsRobotics
Robotics
 
Edge detector & avoider robot
Edge detector & avoider robotEdge detector & avoider robot
Edge detector & avoider robot
 
INTELIGENT RAILWAY SYSTEM
INTELIGENT RAILWAY SYSTEMINTELIGENT RAILWAY SYSTEM
INTELIGENT RAILWAY SYSTEM
 
Line maze solver robot
Line maze solver robot Line maze solver robot
Line maze solver robot
 
Tunnel robot ppt
Tunnel robot pptTunnel robot ppt
Tunnel robot ppt
 
Line following robot
Line following robotLine following robot
Line following robot
 
Front
FrontFront
Front
 
B044020609
B044020609B044020609
B044020609
 
Line Following Robot
Line Following RobotLine Following Robot
Line Following Robot
 

More from Priya Hada

Plc report with project
Plc report with projectPlc report with project
Plc report with projectPriya Hada
 
Plc and scada theory ppt
Plc and scada theory pptPlc and scada theory ppt
Plc and scada theory pptPriya Hada
 
Plc and scada project ppt
Plc and scada project pptPlc and scada project ppt
Plc and scada project pptPriya Hada
 
Cellular concepts
Cellular conceptsCellular concepts
Cellular conceptsPriya Hada
 
Types of glasswares
Types of glasswaresTypes of glasswares
Types of glasswaresPriya Hada
 
Presentation small loop_antennas_electric_field_and_directivity_calculations_...
Presentation small loop_antennas_electric_field_and_directivity_calculations_...Presentation small loop_antennas_electric_field_and_directivity_calculations_...
Presentation small loop_antennas_electric_field_and_directivity_calculations_...Priya Hada
 
Vlsi report using latex
Vlsi report using latexVlsi report using latex
Vlsi report using latexPriya Hada
 
Bermuda triangle
Bermuda triangleBermuda triangle
Bermuda trianglePriya Hada
 
## Finalterm paper repport on fso#w245
## Finalterm paper repport on fso#w245## Finalterm paper repport on fso#w245
## Finalterm paper repport on fso#w245Priya Hada
 
## Final term paper ppt##
## Final term paper ppt#### Final term paper ppt##
## Final term paper ppt##Priya Hada
 
Emft final pppts
Emft final ppptsEmft final pppts
Emft final ppptsPriya Hada
 
Priyas final ppts
Priyas final pptsPriyas final ppts
Priyas final pptsPriya Hada
 

More from Priya Hada (14)

Plc report with project
Plc report with projectPlc report with project
Plc report with project
 
Plc report
Plc reportPlc report
Plc report
 
Plc report
Plc report Plc report
Plc report
 
Plc and scada theory ppt
Plc and scada theory pptPlc and scada theory ppt
Plc and scada theory ppt
 
Plc and scada project ppt
Plc and scada project pptPlc and scada project ppt
Plc and scada project ppt
 
Cellular concepts
Cellular conceptsCellular concepts
Cellular concepts
 
Types of glasswares
Types of glasswaresTypes of glasswares
Types of glasswares
 
Presentation small loop_antennas_electric_field_and_directivity_calculations_...
Presentation small loop_antennas_electric_field_and_directivity_calculations_...Presentation small loop_antennas_electric_field_and_directivity_calculations_...
Presentation small loop_antennas_electric_field_and_directivity_calculations_...
 
Vlsi report using latex
Vlsi report using latexVlsi report using latex
Vlsi report using latex
 
Bermuda triangle
Bermuda triangleBermuda triangle
Bermuda triangle
 
## Finalterm paper repport on fso#w245
## Finalterm paper repport on fso#w245## Finalterm paper repport on fso#w245
## Finalterm paper repport on fso#w245
 
## Final term paper ppt##
## Final term paper ppt#### Final term paper ppt##
## Final term paper ppt##
 
Emft final pppts
Emft final ppptsEmft final pppts
Emft final pppts
 
Priyas final ppts
Priyas final pptsPriyas final ppts
Priyas final ppts
 

Recently uploaded

MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...apidays
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsNanddeep Nachan
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
A Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusA Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusZilliz
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024The Digital Insurer
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 

Recently uploaded (20)

MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
A Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusA Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source Milvus
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 

Line follower robot

  • 1. Name of Institution A project report on Line follower robot SUBMITTED BY: PRIYA HADA B.TECH ECE (SECTION –B) VTH SEM 1
  • 2. CONTENTS Name of Institution OBJECTIVE WHAT IS A LINE TRACER?  ITS COMPONENTS • LM324 • IC7805 • MICROPROCESSOR • L293D BLOCK DIAGRAM WORKING ECONOMIC IMPORTANCE 2
  • 3. INTRODUCTION Name of Institution • What is a line follower? Line follower is a machine that can follow a path. The path can be visible like a black line on a white surface (or vice-versa) or it can be invisible like a magnetic field. • What is the need to build a line follower? Sensing a line and maneuvering the robot to stay on course, while constantly correcting wrong moves using feedback mechanism forms a simple yet effective closed loop system.
  • 5. LM324 Name of Institution IC LM324 is a comparator IC. It is a MAIN BRAIN of line tracer. The Ports takes two voltage inputs at positive and negative pin respectively, compares them and gives a digital output in the form of logical HIGH or logical LOW. 5
  • 6. Name IR Transmitter & Receiver of Institution • • IR TRANSMITTER ( EMITTING DIODE) The IR LED emitting infrared light is put on in the transmitting unit. IR or VISIBLE light is emitted from the emitter This emitted light strikes the surface and gets reflected back. If the surface is white, more intensity of light gets reflected and for black surface very less intensity of light is reflected. IR RECEIVER (PHOTODETECTOR) Used to detect the intensity of light reflected. The corresponding analog voltage is induced based on the intensity of reflected light, which further compared by comparator and output send as 0 or 1.
  • 7. IC 7805 Name of Institution  A voltage regulator is an electrical regulator designed to automatically maintain a constant voltage level. It converts a positive voltage (7-29V) to +5 volts. Heat sink provided in the center to release heat generated due to drop across the IC.  Input voltage of about 5 to 18 V is given, Ground is 0 V and regulated output of +5V. 7
  • 8. L293D (H-Bridge) Name of Institution • Motors are arranged in a fashion called H-Bridge. • H-Bridge-It is an electronic circuit which enables a voltage to be applied across a load in either direction. • It allows a circuit full control over a standard electric DC motor. That is, with an H-bridge, a microcontroller, logic chip, or remote control can electronically command the motor to go forward, reverse, brake, and coast.
  • 9. WORKING PRINCIPLE Name of Institution The robot uses IR(infrared) sensors to sense the line. Output of the sensors is an analog signal which depends on the amount of light reflected back. This analog signal is given to the comparator to produce 0s and 1s which are then fed to the uC. Then microcontroller decides the position of robot in left or right direction.
  • 10. WORKING PRINCIPLE Name of Institution When a sensor is on the black line it reads 0 and when it is on the bright surface it reads 1. When left sensor comes in white(for black line tracer) region then right motor stops while left motor continue to move so that right turn takes place and robot returns on white line. First sensor which is to the right will become low as that sensor will be facing the black line and the remaining sensors response will be high. i.e. the right wheel is held constant and the left wheel is made to move freely until the response from the middle sensor becomes low . When right sensor comes in white region then left motor stops while right motor continue to move so that left turn takes place and robot returns on white line.
  • 11. WORKING PRINCIPLE( contd…) Name of Institution The middle sensor will always be on the line and as the line is black in color, it will not reflect the emitted radiation back and the response of the sensor will be low and the response of the remaining two sensors will be high as they will be on the bright surface. When both sensors are on black line then robot moves forward. If all the three sensors will be on brighter surface then they all will be high and as no line is detected , robot move in a circular motion until line is found. 11
  • 12. Name of Institution APPLICATION ADVANTAGES DISADVANTAGES Industrial automated equipment carriers. The robot must be capable of following a line. LFR can move on a fixed track or path. Automated cars.  Insensitive to environment factors like noise and lightning. It requires power supply. Tour guides in museums and other similar applications. It should be capable of taking various degrees of turns. Lack of speed control makes the robot unstable at times. Deliver the mail within the office building The color of the line must not be a factor as long as it is darker than the surroundings. Choice of line is made in the hardware abstraction and cannot be changed by software. Deliver medications in a hospital. 12
  • 13. MICROCONTROLLER CODE Name of Institution #include<regx51.h> void main() { while(1) { if(P1_0==0&&P1_1==0) { P2=0x00; } if(P1_0==1&&P1_1==1) { P2=0xF5; } if(P1_0==0&&P1_1==1) { P2=0xF4; } if(P1_0==1&&P1_1==0) { P2=0xF1; } Keil software is used for microcontroller code and proteus for simulation. } } 13

Editor's Notes

  1. The IR LED emits a beam of IR and the surface below reflect the beam. When the sensors senses the beam it generates a voltage. This voltage depends on the amount of the light sense by the sensor. When the intensity is higher the generated voltage is higher and when the intensity is lower the generated voltage is lower.
  2. It may use an electromechanical mechanism, or passive or active electronic components. Depending on the design, it may be used to regulate one or more AC or DC voltages.
  3. LFR uses two motors to control rear wheels . It has 3-infrared sensors on the bottom for detection of black tracking tape. When the middle sensor detects the black color, this sensor output is given to the comparator LM324. The output of comparator compares this sensor output with a reference voltage and gives an output. The output of comparator will be low when it receives an input from the sensor.
  4. Black colour is capable of absorbing the radiation and white colour or a bright colour reflects the radiation back. Here, 3 pairs of IR TX and Rx are used. The robot uses these IR sensors to sense the line and the arrangement is made such that sensors face the ground. The output from the sensors is an analog signal which depends on the amount of light reflected back and this analog signal is given to the comparator to produce 0s and 1s.
  5. Robot direction is determined by what the robot “sees”If line is centered in front of robot, go forwardIf line is left of center, turn leftIf line is right of center, turn rightIf no line is detected, circle until line is found
  6. APPLICATION :Industrial automated equipment carriers.Automated cars.Tour guides in museums and other similar applications.Deliver the mail within  the office buildingDeliver medications in a hospital.