0% found this document useful (0 votes)
13 views4 pages

Automatic Door Opener Report

This project outlines a motion-based automatic door opener that integrates motion detection, metal detection, and CCTV logging for secure, contactless entry. The system uses an Arduino Uno and various sensors to detect human presence and metallic objects, automating door access while recording visual logs. The design aims to be cost-effective and user-friendly, enhancing security in access control systems.

Uploaded by

divyashivara10
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views4 pages

Automatic Door Opener Report

This project outlines a motion-based automatic door opener that integrates motion detection, metal detection, and CCTV logging for secure, contactless entry. The system uses an Arduino Uno and various sensors to detect human presence and metallic objects, automating door access while recording visual logs. The design aims to be cost-effective and user-friendly, enhancing security in access control systems.

Uploaded by

divyashivara10
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

Motion-Based Automatic Door Opener with Metal Detector and CCTV Logging

Abstract

This project presents a smart automatic door opener system utilizing motion detection, a metal detector, and

CCTV logging to ensure secure, contactless entry. The system automates access by detecting human

presence, scanning for metallic objects, and recording visual logs through a connected camera.

Introduction

The increasing demand for automation in access control systems has led to the development of intelligent

door mechanisms. This system integrates motion detection, metal detection, and CCTV logging for a secure

and efficient access solution.

Objectives

- Automate door opening with motion detection

- Ensure security using metal detection

- Log entries using CCTV

- Cost-effective and user-friendly design

Components Required

- Arduino Uno

- PIR/IR Motion Sensor

- Metal Detector Module

- Servo Motor or DC Motor with Driver


Motion-Based Automatic Door Opener with Metal Detector and CCTV Logging

- USB or Pi Camera

- Power Supply

- Jumper Wires, Breadboard

Working Principle

The system detects a person using a PIR sensor, checks for metal using a metal detector, and opens the

door using a servo if no metal is found. Simultaneously, a camera logs the entry.

Circuit Diagram
Motion-Based Automatic Door Opener with Metal Detector and CCTV Logging

Arduino Code

#include <Servo.h>
Servo doorServo;

int pirPin = 2;
int metalPin = 3;
int buzzerPin = 6;
int ledPin = 7;

void setup() {
pinMode(pirPin, INPUT);
pinMode(metalPin, INPUT);
pinMode(buzzerPin, OUTPUT);
pinMode(ledPin, OUTPUT);
doorServo.attach(9);
doorServo.write(0);
Motion-Based Automatic Door Opener with Metal Detector and CCTV Logging
Serial.begin(9600);
}

void loop() {
int motion = digitalRead(pirPin);
int metal = digitalRead(metalPin);

if (motion == HIGH) {
if (metal == LOW) {
doorServo.write(90);
delay(5000);
doorServo.write(0);
} else {
digitalWrite(buzzerPin, HIGH);
digitalWrite(ledPin, HIGH);
delay(2000);
digitalWrite(buzzerPin, LOW);
digitalWrite(ledPin, LOW);
}
}
}

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy