SlideShare una empresa de Scribd logo
1 de 13
Name of Institution

Amity School of Engineering
& Technology

PRACTICAL TRAINING PRESENTATION ON
“AUTOMATIC DOOR WITH VISITOR COUNTER”
INDIRA KUNDU
B.TECH(ECE)- V SEM
SEC-B
1
Contents:

Name of Institution

 Introduction
 Block diagram
 AT89C51
 Infra-red sensors
 LM358
 Seven Segment Display & IC-4511
 L293D
 Working of the project
 Pros and Cons
 C Code
2
Automatic door with visitor Counter
Name of Institution
- Introduction


In this system, doors open automatically when
approached by someone and then closes
automatically and the counter value is
incremented or decremented based upon whether
the visitor has entered or exited.



Depending upon the interrupt from the sensors,
the system identifies the entry and exit of the
visitor.



On the successful implementation of the system,
it displays the number of visitor present in the
room.
3
Block Diagram

Name of Institution

Seven
segment
display

IR
Sensor

Op-Amp
Comparaator
(LM358)

motor
driver
L293D

DC
motor
Micro-Controller AT89C51 of Institution
Name

5
Infra Red Sensors

•

Name of Institution

When an object is close to
the sensor, the light from the
LED bounces off the object
and into the light sensor. This
results in a large jump in the
intensity, which we already
know can be detected using a
threshold.
6
LM358

Name of Institution

This device consist
of two independent,
operational
Amplifiers.

7
Seven Segment Display & IC-4511
Name of Institution

 4511 works only
with common
cathode seven
segment display

• With the 4511 we can drive the
display with just 4 lines.
• It takes a BCD number as an
input, then outputs the
necessary lines to display that
number on the 7 segment
display.
• In normal operation, the Lamp
Test(LT) and blanking(BL)
inputs are connected HIGH,
and the Latch Enable (LE)
input is connected LOW.
8
L293D

Name of Institution

• A single L293D IC allows two
DC motors to drive on either
direction simultaneously.
• For driving the motor with
inputs 1 and 2, we need to
enable pin 1 to high. And for
driving it with inputs 3 and 4, we
need to make the pin 9 to high.
If anyone of the either pin1 or
pin9 goes low then the motor in
the corresponding section will
suspend working.
9
Working of the project

Name of Institution

• The microcontroller unit continuously checks for the
arrival of any person from outside or inside by using
the Op-Amp based sensors.
• As soon as the value at the sensor port becomes “1”
or high, the DC motor (here, it represents the door)
rotates first clockwise (opening of the door) and and
then it rotates anticlockwise (closing of the door).
• After this the value of the seven segment display is
incremented by 1 if the person is entering or it is
decremented by 1 if the person is exiting.

10
Pros & Cons

Name of Institution

Pros:
• This system can be economically implemented in all
the places where the door automation is required and
visitors have to be counted and controlled. eg.
Auditorium.
• Reduces human labour.
Cons:
• Needs power supply to operate.
• Needs maintenance and check.
11
C Code
#include<regx51.h>
void motor(int,int,unsigned int);
unsigned int i;
int x;
void delay(unsigned int d)
{ for(i=0;i<d;i++);}
void main()
{
while(1)
{
if(P1_0==1 && P1_1==0)
{ motor(1,0,50000);
motor(1,1,60000);
motor(0,1,50000);
motor(1,1,60000);
if(x<99)
{ x++;}
P3=x;
delay(60000);}

Name of Institution

else if(P1_0==0 && P1_1==1)
{ motor(1,0,50000);
motor(1,1,60000);
motor(0,1,50000);
motor(1,1,60000);
if(x>0)
{ x--; }
P3=x;
delay(60000);
}
}
}
void motor(int a, int b,unsigned int c)
{ P2_0=a;
P2_1=b;
delay(c);
}
12
Name of Institution

THANK YOU

13

Más contenido relacionado

La actualidad más candente

Software configuration items
Software configuration itemsSoftware configuration items
Software configuration itemsashok kumar
 
Information processing approach
Information processing approachInformation processing approach
Information processing approachaj9ajeet
 
COCOMO Model in software project management
COCOMO Model in software project managementCOCOMO Model in software project management
COCOMO Model in software project managementSyed Hassan Ali
 
Human computer interaction
Human computer interactionHuman computer interaction
Human computer interactionemaan waseem
 
Spm project planning
Spm project planning Spm project planning
Spm project planning Kanchana Devi
 
Human computer interaction
Human computer interactionHuman computer interaction
Human computer interactionsai anjaneya
 
Ooad (object oriented analysis design)
Ooad (object oriented analysis design)Ooad (object oriented analysis design)
Ooad (object oriented analysis design)Gagandeep Nanda
 
process models- software engineering
process models- software engineeringprocess models- software engineering
process models- software engineeringArun Nair
 
Software Engineering Past Papers (Short Questions)
Software Engineering Past Papers (Short Questions)Software Engineering Past Papers (Short Questions)
Software Engineering Past Papers (Short Questions)MuhammadTalha436
 
Human Memory
Human MemoryHuman Memory
Human MemoryNimo Gill
 
Fluid and crystallized intelligence
Fluid and crystallized intelligenceFluid and crystallized intelligence
Fluid and crystallized intelligenceAtul Thakur
 
Creativity and psychology
Creativity and psychologyCreativity and psychology
Creativity and psychologyYAHYA FEHDI
 
Planning in AI(Partial order planning)
Planning in AI(Partial order planning)Planning in AI(Partial order planning)
Planning in AI(Partial order planning)Vicky Tyagi
 

La actualidad más candente (20)

Software configuration items
Software configuration itemsSoftware configuration items
Software configuration items
 
Information processing approach
Information processing approachInformation processing approach
Information processing approach
 
COCOMO Model in software project management
COCOMO Model in software project managementCOCOMO Model in software project management
COCOMO Model in software project management
 
Human computer interaction
Human computer interactionHuman computer interaction
Human computer interaction
 
Spm project planning
Spm project planning Spm project planning
Spm project planning
 
Human computer interaction
Human computer interactionHuman computer interaction
Human computer interaction
 
Unified process Model
Unified process ModelUnified process Model
Unified process Model
 
Task analysis
Task analysisTask analysis
Task analysis
 
Ooad (object oriented analysis design)
Ooad (object oriented analysis design)Ooad (object oriented analysis design)
Ooad (object oriented analysis design)
 
process models- software engineering
process models- software engineeringprocess models- software engineering
process models- software engineering
 
Software Engineering Past Papers (Short Questions)
Software Engineering Past Papers (Short Questions)Software Engineering Past Papers (Short Questions)
Software Engineering Past Papers (Short Questions)
 
Approaches of Motivation
Approaches of MotivationApproaches of Motivation
Approaches of Motivation
 
Requirements elicitation
Requirements elicitationRequirements elicitation
Requirements elicitation
 
PROTOTYPE MODEL
PROTOTYPE MODELPROTOTYPE MODEL
PROTOTYPE MODEL
 
Spm unit 3
Spm unit 3Spm unit 3
Spm unit 3
 
Human Memory
Human MemoryHuman Memory
Human Memory
 
Fluid and crystallized intelligence
Fluid and crystallized intelligenceFluid and crystallized intelligence
Fluid and crystallized intelligence
 
P code
P codeP code
P code
 
Creativity and psychology
Creativity and psychologyCreativity and psychology
Creativity and psychology
 
Planning in AI(Partial order planning)
Planning in AI(Partial order planning)Planning in AI(Partial order planning)
Planning in AI(Partial order planning)
 

Destacado

Amity template for presentation
Amity template for presentationAmity template for presentation
Amity template for presentationYash Savla
 
Bidirectional Visitor Counter with Automatic ON-OFF Switch2
Bidirectional Visitor Counter with Automatic ON-OFF Switch2Bidirectional Visitor Counter with Automatic ON-OFF Switch2
Bidirectional Visitor Counter with Automatic ON-OFF Switch2DIPAN GHOSH
 
Report on automatic door
Report on automatic doorReport on automatic door
Report on automatic doorIndira Kundu
 
Automatic room light controller with bidirectional visitor counter
Automatic room light controller with bidirectional visitor counterAutomatic room light controller with bidirectional visitor counter
Automatic room light controller with bidirectional visitor counterNiladri Dutta
 
Automatic room-light-controller-visitor-counter
Automatic room-light-controller-visitor-counterAutomatic room-light-controller-visitor-counter
Automatic room-light-controller-visitor-counterMohit Awasthi
 
Amity Direct PPT
Amity Direct PPTAmity Direct PPT
Amity Direct PPTDeo Ranjan
 
Amity international campuses
Amity international campusesAmity international campuses
Amity international campusesAbhishek Bajaj
 
MIS1: Organization Management & Information
MIS1: Organization Management & InformationMIS1: Organization Management & Information
MIS1: Organization Management & InformationJitendra Tomar
 
Motor driver IC L293D
Motor driver IC L293DMotor driver IC L293D
Motor driver IC L293DAmit kumar
 
ppt of automatic room light controller and BI directional counter
ppt of automatic room light controller and BI directional counterppt of automatic room light controller and BI directional counter
ppt of automatic room light controller and BI directional counterMannavapremkumar
 
Gas sensor Alarm
Gas sensor AlarmGas sensor Alarm
Gas sensor AlarmUdit Jain
 
Amity Acquires a 170-Acre Campus in New York
Amity Acquires a 170-Acre Campus in New YorkAmity Acquires a 170-Acre Campus in New York
Amity Acquires a 170-Acre Campus in New YorkAmity New York
 
Bidirectional Visitor Counter using IR sensors and Arduino Uno R3
Bidirectional Visitor Counter using IR sensors and Arduino Uno R3Bidirectional Visitor Counter using IR sensors and Arduino Uno R3
Bidirectional Visitor Counter using IR sensors and Arduino Uno R3Abhishekvb
 

Destacado (20)

Amity template for presentation
Amity template for presentationAmity template for presentation
Amity template for presentation
 
Bidirectional Visitor Counter with Automatic ON-OFF Switch2
Bidirectional Visitor Counter with Automatic ON-OFF Switch2Bidirectional Visitor Counter with Automatic ON-OFF Switch2
Bidirectional Visitor Counter with Automatic ON-OFF Switch2
 
Bidirect visitor counter
Bidirect visitor counterBidirect visitor counter
Bidirect visitor counter
 
Amity University
Amity UniversityAmity University
Amity University
 
Report on automatic door
Report on automatic doorReport on automatic door
Report on automatic door
 
Automatic room light controller with bidirectional visitor counter
Automatic room light controller with bidirectional visitor counterAutomatic room light controller with bidirectional visitor counter
Automatic room light controller with bidirectional visitor counter
 
Automatic room-light-controller-visitor-counter
Automatic room-light-controller-visitor-counterAutomatic room-light-controller-visitor-counter
Automatic room-light-controller-visitor-counter
 
Amity Direct PPT
Amity Direct PPTAmity Direct PPT
Amity Direct PPT
 
Amity Business Review
Amity Business ReviewAmity Business Review
Amity Business Review
 
Amity international campuses
Amity international campusesAmity international campuses
Amity international campuses
 
MIS1: Organization Management & Information
MIS1: Organization Management & InformationMIS1: Organization Management & Information
MIS1: Organization Management & Information
 
Motor driver IC L293D
Motor driver IC L293DMotor driver IC L293D
Motor driver IC L293D
 
Visitor counter
Visitor counterVisitor counter
Visitor counter
 
Vega kit list
Vega kit listVega kit list
Vega kit list
 
ppt of automatic room light controller and BI directional counter
ppt of automatic room light controller and BI directional counterppt of automatic room light controller and BI directional counter
ppt of automatic room light controller and BI directional counter
 
Gas sensor Alarm
Gas sensor AlarmGas sensor Alarm
Gas sensor Alarm
 
Amity Acquires a 170-Acre Campus in New York
Amity Acquires a 170-Acre Campus in New YorkAmity Acquires a 170-Acre Campus in New York
Amity Acquires a 170-Acre Campus in New York
 
Bidirectional Visitor Counter using IR sensors and Arduino Uno R3
Bidirectional Visitor Counter using IR sensors and Arduino Uno R3Bidirectional Visitor Counter using IR sensors and Arduino Uno R3
Bidirectional Visitor Counter using IR sensors and Arduino Uno R3
 
Traffic light controller
Traffic light controllerTraffic light controller
Traffic light controller
 
Asian paint ppt
Asian paint pptAsian paint ppt
Asian paint ppt
 

Similar a Training ppt

Automatic gate control
Automatic gate controlAutomatic gate control
Automatic gate controlDipankar Haloi
 
Automatic room light controller with bi directional visitor counter using Ard...
Automatic room light controller with bi directional visitor counter using Ard...Automatic room light controller with bi directional visitor counter using Ard...
Automatic room light controller with bi directional visitor counter using Ard...PRASENJITMORE2
 
Final year project presentation
Final year project presentationFinal year project presentation
Final year project presentationBanwari Lal
 
sunil jha presentation.pptx
sunil jha presentation.pptxsunil jha presentation.pptx
sunil jha presentation.pptxjxuaaaka
 
PLC & SCADA
PLC & SCADAPLC & SCADA
PLC & SCADAanilakib
 
Arduino Based Collision Prevention Warning System
Arduino Based Collision Prevention Warning SystemArduino Based Collision Prevention Warning System
Arduino Based Collision Prevention Warning SystemMadhav Reddy Chintapalli
 
Plc (PROGRAMMABLE LOGIC CONTROLLER)
Plc (PROGRAMMABLE LOGIC CONTROLLER)Plc (PROGRAMMABLE LOGIC CONTROLLER)
Plc (PROGRAMMABLE LOGIC CONTROLLER)Urval Chotalia
 
56211728 automatic-room-light-controller-with-bidirectional-visitor-counter
56211728 automatic-room-light-controller-with-bidirectional-visitor-counter56211728 automatic-room-light-controller-with-bidirectional-visitor-counter
56211728 automatic-room-light-controller-with-bidirectional-visitor-counterAnn Francis Olita
 
Automatic railway gate control
Automatic railway gate controlAutomatic railway gate control
Automatic railway gate controlMohamed Magdy
 
Human body temperature sensed automatic door opening system
Human body temperature sensed automatic door opening systemHuman body temperature sensed automatic door opening system
Human body temperature sensed automatic door opening systemBhumika PATEL
 
AUTOMATIC RAILWAY GATE AND SIGNALLING SYSTEM
AUTOMATIC RAILWAY GATE AND SIGNALLING SYSTEMAUTOMATIC RAILWAY GATE AND SIGNALLING SYSTEM
AUTOMATIC RAILWAY GATE AND SIGNALLING SYSTEMBiprajitSarkar
 
automatic rail gate control with collision avoidance
automatic rail gate control with collision avoidanceautomatic rail gate control with collision avoidance
automatic rail gate control with collision avoidanceRaj Anand
 
Plc documentation final
Plc documentation finalPlc documentation final
Plc documentation finalSonu Kumar
 
Monitoring of Machine stausss
Monitoring of Machine stausssMonitoring of Machine stausss
Monitoring of Machine stausssUmair Zafar
 
Visiter counter doc
Visiter counter docVisiter counter doc
Visiter counter docPrem Kumar
 
breif about automations and iot.ppt.pptx
breif about automations and iot.ppt.pptxbreif about automations and iot.ppt.pptx
breif about automations and iot.ppt.pptxahmedkn1999
 

Similar a Training ppt (20)

Automatic gate control
Automatic gate controlAutomatic gate control
Automatic gate control
 
Automatic room light controller with bi directional visitor counter using Ard...
Automatic room light controller with bi directional visitor counter using Ard...Automatic room light controller with bi directional visitor counter using Ard...
Automatic room light controller with bi directional visitor counter using Ard...
 
Final year project presentation
Final year project presentationFinal year project presentation
Final year project presentation
 
sunil jha presentation.pptx
sunil jha presentation.pptxsunil jha presentation.pptx
sunil jha presentation.pptx
 
PLC & SCADA
PLC & SCADAPLC & SCADA
PLC & SCADA
 
PLC 5.docx
PLC 5.docxPLC 5.docx
PLC 5.docx
 
Deepak
DeepakDeepak
Deepak
 
Arduino Based Collision Prevention Warning System
Arduino Based Collision Prevention Warning SystemArduino Based Collision Prevention Warning System
Arduino Based Collision Prevention Warning System
 
Plc (PROGRAMMABLE LOGIC CONTROLLER)
Plc (PROGRAMMABLE LOGIC CONTROLLER)Plc (PROGRAMMABLE LOGIC CONTROLLER)
Plc (PROGRAMMABLE LOGIC CONTROLLER)
 
56211728 automatic-room-light-controller-with-bidirectional-visitor-counter
56211728 automatic-room-light-controller-with-bidirectional-visitor-counter56211728 automatic-room-light-controller-with-bidirectional-visitor-counter
56211728 automatic-room-light-controller-with-bidirectional-visitor-counter
 
Finalppt
FinalpptFinalppt
Finalppt
 
Automatic railway gate control
Automatic railway gate controlAutomatic railway gate control
Automatic railway gate control
 
Human body temperature sensed automatic door opening system
Human body temperature sensed automatic door opening systemHuman body temperature sensed automatic door opening system
Human body temperature sensed automatic door opening system
 
AUTOMATIC RAILWAY GATE AND SIGNALLING SYSTEM
AUTOMATIC RAILWAY GATE AND SIGNALLING SYSTEMAUTOMATIC RAILWAY GATE AND SIGNALLING SYSTEM
AUTOMATIC RAILWAY GATE AND SIGNALLING SYSTEM
 
automatic rail gate control with collision avoidance
automatic rail gate control with collision avoidanceautomatic rail gate control with collision avoidance
automatic rail gate control with collision avoidance
 
Plc documentation final
Plc documentation finalPlc documentation final
Plc documentation final
 
Monitoring of Machine stausss
Monitoring of Machine stausssMonitoring of Machine stausss
Monitoring of Machine stausss
 
Atomatic light controller
Atomatic light controllerAtomatic light controller
Atomatic light controller
 
Visiter counter doc
Visiter counter docVisiter counter doc
Visiter counter doc
 
breif about automations and iot.ppt.pptx
breif about automations and iot.ppt.pptxbreif about automations and iot.ppt.pptx
breif about automations and iot.ppt.pptx
 

Último

M.C Lodges -- Guest House in Jhang.
M.C Lodges --  Guest House in Jhang.M.C Lodges --  Guest House in Jhang.
M.C Lodges -- Guest House in Jhang.Aaiza Hassan
 
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876dlhescort
 
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...anilsa9823
 
KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...
KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...
KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...Any kyc Account
 
Best VIP Call Girls Noida Sector 40 Call Me: 8448380779
Best VIP Call Girls Noida Sector 40 Call Me: 8448380779Best VIP Call Girls Noida Sector 40 Call Me: 8448380779
Best VIP Call Girls Noida Sector 40 Call Me: 8448380779Delhi Call girls
 
Monthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptxMonthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptxAndy Lambert
 
A305_A2_file_Batkhuu progress report.pdf
A305_A2_file_Batkhuu progress report.pdfA305_A2_file_Batkhuu progress report.pdf
A305_A2_file_Batkhuu progress report.pdftbatkhuu1
 
Event mailer assignment progress report .pdf
Event mailer assignment progress report .pdfEvent mailer assignment progress report .pdf
Event mailer assignment progress report .pdftbatkhuu1
 
VIP Call Girls Gandi Maisamma ( Hyderabad ) Phone 8250192130 | ₹5k To 25k Wit...
VIP Call Girls Gandi Maisamma ( Hyderabad ) Phone 8250192130 | ₹5k To 25k Wit...VIP Call Girls Gandi Maisamma ( Hyderabad ) Phone 8250192130 | ₹5k To 25k Wit...
VIP Call Girls Gandi Maisamma ( Hyderabad ) Phone 8250192130 | ₹5k To 25k Wit...Suhani Kapoor
 
Call Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine ServiceCall Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine Serviceritikaroy0888
 
Best Basmati Rice Manufacturers in India
Best Basmati Rice Manufacturers in IndiaBest Basmati Rice Manufacturers in India
Best Basmati Rice Manufacturers in IndiaShree Krishna Exports
 
9599632723 Top Call Girls in Delhi at your Door Step Available 24x7 Delhi
9599632723 Top Call Girls in Delhi at your Door Step Available 24x7 Delhi9599632723 Top Call Girls in Delhi at your Door Step Available 24x7 Delhi
9599632723 Top Call Girls in Delhi at your Door Step Available 24x7 DelhiCall Girls in Delhi
 
Monte Carlo simulation : Simulation using MCSM
Monte Carlo simulation : Simulation using MCSMMonte Carlo simulation : Simulation using MCSM
Monte Carlo simulation : Simulation using MCSMRavindra Nath Shukla
 
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...lizamodels9
 
Ensure the security of your HCL environment by applying the Zero Trust princi...
Ensure the security of your HCL environment by applying the Zero Trust princi...Ensure the security of your HCL environment by applying the Zero Trust princi...
Ensure the security of your HCL environment by applying the Zero Trust princi...Roland Driesen
 
7.pdf This presentation captures many uses and the significance of the number...
7.pdf This presentation captures many uses and the significance of the number...7.pdf This presentation captures many uses and the significance of the number...
7.pdf This presentation captures many uses and the significance of the number...Paul Menig
 
Famous Olympic Siblings from the 21st Century
Famous Olympic Siblings from the 21st CenturyFamous Olympic Siblings from the 21st Century
Famous Olympic Siblings from the 21st Centuryrwgiffor
 
0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdf0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdfRenandantas16
 

Último (20)

M.C Lodges -- Guest House in Jhang.
M.C Lodges --  Guest House in Jhang.M.C Lodges --  Guest House in Jhang.
M.C Lodges -- Guest House in Jhang.
 
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
Call Girls in Delhi, Escort Service Available 24x7 in Delhi 959961-/-3876
 
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
Lucknow 💋 Escorts in Lucknow - 450+ Call Girl Cash Payment 8923113531 Neha Th...
 
KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...
KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...
KYC-Verified Accounts: Helping Companies Handle Challenging Regulatory Enviro...
 
Best VIP Call Girls Noida Sector 40 Call Me: 8448380779
Best VIP Call Girls Noida Sector 40 Call Me: 8448380779Best VIP Call Girls Noida Sector 40 Call Me: 8448380779
Best VIP Call Girls Noida Sector 40 Call Me: 8448380779
 
Monthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptxMonthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptx
 
A305_A2_file_Batkhuu progress report.pdf
A305_A2_file_Batkhuu progress report.pdfA305_A2_file_Batkhuu progress report.pdf
A305_A2_file_Batkhuu progress report.pdf
 
Event mailer assignment progress report .pdf
Event mailer assignment progress report .pdfEvent mailer assignment progress report .pdf
Event mailer assignment progress report .pdf
 
VIP Call Girls Gandi Maisamma ( Hyderabad ) Phone 8250192130 | ₹5k To 25k Wit...
VIP Call Girls Gandi Maisamma ( Hyderabad ) Phone 8250192130 | ₹5k To 25k Wit...VIP Call Girls Gandi Maisamma ( Hyderabad ) Phone 8250192130 | ₹5k To 25k Wit...
VIP Call Girls Gandi Maisamma ( Hyderabad ) Phone 8250192130 | ₹5k To 25k Wit...
 
Call Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine ServiceCall Girls In Panjim North Goa 9971646499 Genuine Service
Call Girls In Panjim North Goa 9971646499 Genuine Service
 
Best Basmati Rice Manufacturers in India
Best Basmati Rice Manufacturers in IndiaBest Basmati Rice Manufacturers in India
Best Basmati Rice Manufacturers in India
 
9599632723 Top Call Girls in Delhi at your Door Step Available 24x7 Delhi
9599632723 Top Call Girls in Delhi at your Door Step Available 24x7 Delhi9599632723 Top Call Girls in Delhi at your Door Step Available 24x7 Delhi
9599632723 Top Call Girls in Delhi at your Door Step Available 24x7 Delhi
 
Forklift Operations: Safety through Cartoons
Forklift Operations: Safety through CartoonsForklift Operations: Safety through Cartoons
Forklift Operations: Safety through Cartoons
 
Monte Carlo simulation : Simulation using MCSM
Monte Carlo simulation : Simulation using MCSMMonte Carlo simulation : Simulation using MCSM
Monte Carlo simulation : Simulation using MCSM
 
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...
 
Ensure the security of your HCL environment by applying the Zero Trust princi...
Ensure the security of your HCL environment by applying the Zero Trust princi...Ensure the security of your HCL environment by applying the Zero Trust princi...
Ensure the security of your HCL environment by applying the Zero Trust princi...
 
7.pdf This presentation captures many uses and the significance of the number...
7.pdf This presentation captures many uses and the significance of the number...7.pdf This presentation captures many uses and the significance of the number...
7.pdf This presentation captures many uses and the significance of the number...
 
unwanted pregnancy Kit [+918133066128] Abortion Pills IN Dubai UAE Abudhabi
unwanted pregnancy Kit [+918133066128] Abortion Pills IN Dubai UAE Abudhabiunwanted pregnancy Kit [+918133066128] Abortion Pills IN Dubai UAE Abudhabi
unwanted pregnancy Kit [+918133066128] Abortion Pills IN Dubai UAE Abudhabi
 
Famous Olympic Siblings from the 21st Century
Famous Olympic Siblings from the 21st CenturyFamous Olympic Siblings from the 21st Century
Famous Olympic Siblings from the 21st Century
 
0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdf0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdf
 

Training ppt

  • 1. Name of Institution Amity School of Engineering & Technology PRACTICAL TRAINING PRESENTATION ON “AUTOMATIC DOOR WITH VISITOR COUNTER” INDIRA KUNDU B.TECH(ECE)- V SEM SEC-B 1
  • 2. Contents: Name of Institution  Introduction  Block diagram  AT89C51  Infra-red sensors  LM358  Seven Segment Display & IC-4511  L293D  Working of the project  Pros and Cons  C Code 2
  • 3. Automatic door with visitor Counter Name of Institution - Introduction  In this system, doors open automatically when approached by someone and then closes automatically and the counter value is incremented or decremented based upon whether the visitor has entered or exited.  Depending upon the interrupt from the sensors, the system identifies the entry and exit of the visitor.  On the successful implementation of the system, it displays the number of visitor present in the room. 3
  • 4. Block Diagram Name of Institution Seven segment display IR Sensor Op-Amp Comparaator (LM358) motor driver L293D DC motor
  • 5. Micro-Controller AT89C51 of Institution Name 5
  • 6. Infra Red Sensors • Name of Institution When an object is close to the sensor, the light from the LED bounces off the object and into the light sensor. This results in a large jump in the intensity, which we already know can be detected using a threshold. 6
  • 7. LM358 Name of Institution This device consist of two independent, operational Amplifiers. 7
  • 8. Seven Segment Display & IC-4511 Name of Institution  4511 works only with common cathode seven segment display • With the 4511 we can drive the display with just 4 lines. • It takes a BCD number as an input, then outputs the necessary lines to display that number on the 7 segment display. • In normal operation, the Lamp Test(LT) and blanking(BL) inputs are connected HIGH, and the Latch Enable (LE) input is connected LOW. 8
  • 9. L293D Name of Institution • A single L293D IC allows two DC motors to drive on either direction simultaneously. • For driving the motor with inputs 1 and 2, we need to enable pin 1 to high. And for driving it with inputs 3 and 4, we need to make the pin 9 to high. If anyone of the either pin1 or pin9 goes low then the motor in the corresponding section will suspend working. 9
  • 10. Working of the project Name of Institution • The microcontroller unit continuously checks for the arrival of any person from outside or inside by using the Op-Amp based sensors. • As soon as the value at the sensor port becomes “1” or high, the DC motor (here, it represents the door) rotates first clockwise (opening of the door) and and then it rotates anticlockwise (closing of the door). • After this the value of the seven segment display is incremented by 1 if the person is entering or it is decremented by 1 if the person is exiting. 10
  • 11. Pros & Cons Name of Institution Pros: • This system can be economically implemented in all the places where the door automation is required and visitors have to be counted and controlled. eg. Auditorium. • Reduces human labour. Cons: • Needs power supply to operate. • Needs maintenance and check. 11
  • 12. C Code #include<regx51.h> void motor(int,int,unsigned int); unsigned int i; int x; void delay(unsigned int d) { for(i=0;i<d;i++);} void main() { while(1) { if(P1_0==1 && P1_1==0) { motor(1,0,50000); motor(1,1,60000); motor(0,1,50000); motor(1,1,60000); if(x<99) { x++;} P3=x; delay(60000);} Name of Institution else if(P1_0==0 && P1_1==1) { motor(1,0,50000); motor(1,1,60000); motor(0,1,50000); motor(1,1,60000); if(x>0) { x--; } P3=x; delay(60000); } } } void motor(int a, int b,unsigned int c) { P2_0=a; P2_1=b; delay(c); } 12