It 4
It 4
CHAPTER 1
INTRODUCTION
The purpose of this project to detect if someone is near the door. While it wouldn't
necessarily tell you if someone is trying to break in, it can alert you to presence near the
entryway. The sensor triggers when someone approaches the door, letting you know
about activity near the entrance. This can be useful for general awareness or when you're
expecting deliveries or guests. The sensor will be connected to a microcontroller board
like Arduino or Raspberry Pi. This board can process the sensor data and communicate
with the internet. The system can be programmed to trigger an alert when presence is
detected. This could involve Triggering a siren.
The system likely employs a sensor. When someone approaches the door, the
sensor triggers a signal. This signal can be sent wirelessly to a microcontroller like an
Arduino or Raspberry Pi. The microcontroller can then be programmed to trigger actions
like sending an alert notification or activating a siren to deter potential intruders. The
project offers a convenient and affordable way to improve your home security awareness.
The project's focus is on presence detection, offering a basic layer of security awareness
for your smart home.
• The door sensor can trigger instant notifications whenever someone approaches the
door. This allows you to be aware of activity around your entrance even when
you're away from home.
• Can monitor the door sensor and receive alerts from anywhere with an internet
connection
• The components needed for project are readily available and affordable
IMPLEMENTATION
2.1 COMPONENTS:
1. Arduino UNO
A PIR (Passive Infrared) sensor is a device that detects the presence of people,
animals, or objects by sensing changes in infrared radiation. These sensors are commonly
used in security systems, home automation, and other applications that require motion
detection.
The PIR sensor in the code you provided is used to detect motion and trigger an
LED and a serial print statement.
4.LED
An LED, or Light Emitting Diode, is a semiconductor light source that emits light
when an electric current passes through it. Unlike incandescent bulbs that heat up a filament
to produce light.
LEDs convert electrical energy directly into light energy through a process called
electroluminescence. An LED is a simple device consisting of several key parts:
Semiconductor material, P-type and N-type regions and Electrodes.
5.Jumper wires:
CHAPTER 3
CIRCUIT DESIGN
Here are the steps on how to connect the components in the circuit diagram:
• Connect the VCC pin of the PIR sensor to the 5V pin of the Arduino.
• Connect the GND pin of the PIR sensor to the GND pin of the Arduino.
• Connect the OUT pin of the PIR sensor to digital pin 2 of the Arduino.
• Connect the positive (+) pin of the buzzer to digital pin 8 of the Arduino.
• Connect the negative (-) pin of the buzzer to GND.
RESULT