Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
applications of microcontroller based automatic door open and closed system using ir
#1

applications of microcontroller based automatic door open and closed system using ir sensor pdf

This is a good Electronics Project report on Automatic Door Opening System Using IR Sensors which is used to automate door opening. Some of the main component required for this project are Power supply, ATMEL (AT89S52)Microcontroller, Stepper Motor & IR sensors. This report start with the introduction to embedded systems. In this system whenever the infrared sensor senses the obstacle and the signal is sent to the microcontroller. Then the microcontroller sent the signal to the stepper motor as in which the door is opened. You can also Subscribe to FINAL YEAR PROJECT'S by Email for more such Projects and Seminar.

You must have seen automatic door openers in shopping malls and other commercial buildings. They open the door when someone comes near the entrance and close it after sometime. A number of technologies are available to make such kinds of systems like PIR sensors, Radar sensors, Laser sensors, Infrared sensors, etc. In this arduino based project, we have tried to replicate the same system by using a PIR sensor.

It uses a motion-detecting sensor (PIR sensor) to open or close the door which detects the infrared energy omitted from human's body. When someone comes in front of the door, the infrared energy detected by the sensor changes and it triggers the sensor to open the door whenever someone approaches the door. The signal is further sent to arduino uno that controls the door.

Circuit Components

Arduino UNO
16x2 LCD
PIR Sensor
Connecting wires
Bread board
1 k resistor
Power supply
Motor driver
CD case (DVD Troly)

PIR Sensor

PIR sensor detects any change in heat, and whenever it detects any change, its output PIN becomes HIGH. They are also referred as Pyroelectric or IR motion sensors.
Here we should note that every object emits some amount of infrared when heated. Human also emits infrared because of body heat. PIR sensors can detect small amount of variation in infrared. Whenever an object passes through the sensor range, it produces infrared because of the friction between air and object, and get caught by PIR.

The main component of PIR sensor is Pyroelectric sensor shown in figure (rectangular crystal behind the plastic cap). Along with BISS0001 ("Micro Power PIR Motion Detector IC"), some resistors, capacitors and other components used to build PIR sensor. BISS0001 IC take the input from sensor and does processing to make the output pin HIGH or LOW accordingly.
PIR Sensor
Pyroelectric sensor divide in two halves, when there is no motion, both halves remain in same state, means both senses the same level of infrared. As soon as somebody enters in first half, the infrared level of one half becomes greater than other, and this causes PIRs to react and makes the output pin high.

Pyroelectric sensor is covered by a plastic cap, which has array of many Fresnel Lens inside. These lenses are curved in such a manner so that sensor can cover a wide range.

#include <LiquidCrystal.h>
LiquidCrystal lcd(13, 12, 11, 10, 9, 8);
#define PIR_sensor 14
#define m11 0
#define m12 1
void setup()
{
lcd.begin(16, 2);
pinMode(m11, OUTPUT);
pinMode(m12, OUTPUT);
pinMode(PIR_sensor, INPUT);
lcd.print(" Automatic ");
lcd.setCursor(0,1);
lcd.print(" Door Opener ");
delay(3000);
lcd.clear();
lcd.print("CIRCUIT DEGEST ");
delay(2000);
}
void loop()
{
if(digitalRead(PIR_sensor))
{
lcd.setCursor(0,0);
lcd.print("Movement Detected");
lcd.setCursor(0, 1);
lcd.print(" Gate Opened ");
digitalWrite(m11, HIGH); // gate opening
digitalWrite(m12, LOW);
delay(1000);
digitalWrite(m11, LOW); // gate stop for a while
digitalWrite(m12, LOW);
delay(1000);
lcd.clear();
lcd.print(" Gate Closed ");
digitalWrite(m11, LOW); // gate closing
digitalWrite(m12, HIGH);
delay(1000);
digitalWrite(m11, LOW); // gate closed
digitalWrite(m12, LOW);
delay(1000);
}

else
{
lcd.setCursor(0,0);
lcd.print(" No Movement ");
lcd.setCursor(0,1);
lcd.print(" Gate Closed ");
digitalWrite(m11, LOW);
digitalWrite(m12, LOW);
}
}
Reply

#2
applications of microcontroller based automatic door open and closed system using ir sensor pdf

Abstract

The project is designed for automatic door opening system using PIR sensor. Opening and closing of doors is always a tedious job, especially in places like shopping malls, hotels and theatres where a person is always required to open the door for visitors.
This project proposes a system of automatic opening and closing of door by sensing any body movement near the door.This is achieved with help of a PIR (Passive Infrared) sensor. A live body generally emits infrared energy which is sensed by the PIR sensor from a considerable distance.This sensing signal is fed to a microcontroller to operate a door motor through motor driver IC.
When a body approaches within the operating range of the sensor, it sends a logical command to open the door. The door automatically closes with a fixed time delay. If there is no further movement within the PIR operating range. Interrupt signals are used through limit switches to avoid locked rotor condition of the motor.Further this project can be enhanced interfacing a counting arrangement for keeping a record of entry and exit of people at particular place. This can be achieved by interfacing the system with an EEPROM (non-volatile memory) to avoid loss of stored data even if the power fails.
Reply

#3
please desperately in need of help,please work sometin out.i have seek and searched all over the net for dis particular procedure please show me direction,thanks
Reply

#4

we want data about "ir based auto door open and close system"

ir based auto door open and close system
Reply

#5
Any help with using pythagoras and trignometric to watermark an image project.
Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

Powered By MyBB, © 2002-2024 iAndrew & Melroy van den Berg.