0% found this document useful (0 votes)
64 views

Protection of Home Against Robbery by Usin Arduino

This document describes a home security system that uses an Arduino board, PIR sensor, LED, buzzer, and other components to detect motion and alert homeowners of potential intruders. The system is designed to be inexpensive, easy to use, and operate on low voltage. When the PIR sensor detects motion, it sends a signal to the Arduino board, which then activates the buzzer to sound an alarm. The system is powered by a 9V battery and assembled using common electronic components like an Arduino board, PIR sensor, LED, buzzer, and breadboard. This simple alarm system can help protect homes from theft in an affordable way.
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
64 views

Protection of Home Against Robbery by Usin Arduino

This document describes a home security system that uses an Arduino board, PIR sensor, LED, buzzer, and other components to detect motion and alert homeowners of potential intruders. The system is designed to be inexpensive, easy to use, and operate on low voltage. When the PIR sensor detects motion, it sends a signal to the Arduino board, which then activates the buzzer to sound an alarm. The system is powered by a 9V battery and assembled using common electronic components like an Arduino board, PIR sensor, LED, buzzer, and breadboard. This simple alarm system can help protect homes from theft in an affordable way.
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

PROTECTION OF HOME AGAINST ROBBERY BY USIN

ARDUINO

Faculty of Engineering – University of Aden

ABSTRACT

The increasing criminal case nowadays makes people worried about


losing their properties. In our absence these places are not secure. For
make these palaces secure many peoples keep guards and many people
prefer electronic security systems. In present time many types of
security systems are available in market. These security systems are
very accurate and easy to control and cheaply available and the most
important thing is that they can be operated on low Voltage (Up to 12
Voltage). In this project I will use an interesting, wonderful and cheap
home security alarm. This helps consumers to protect their house from
thieves. In this project I am going to use Arduino Board, P.I.R Sensor
module, LED, Buzzer and some other components. This Project can
either powered with 9V Battery or with U.S.B of the computer.

KEYWORDS

Arduino, home security, PIR sensor, buzzer.

INTRODUCTION

Criminal cases and theft nowadays frequently happen everywhere,


either at home office, school, and even worship places. Although the
entry into the house, offices, schools, and worship places have been
locked but the thief still has a way to break into those places, whether
through the doors, windows, or even the tile or roof.
Some of the prevention methods of theft commonly done by the
community are by taking care their house with security guard,
guard dogs, and CCTV cameras. However, some of these security have
their own advantages and disadvantages. For instance, the security
guard has the advantage of patrolling and controlling to take care of a
place.
The advantage of having guard dog is a dog is loyal to his master but
the disadvantage is not all humans like dogs. Especially in Islam, there
is some rules for Muslims to keep dogs. For these reasons the use of
automatic robbery security is become very important where the
Arduino is used. The use of Arduino in this case has a lot of advantages
such as: it is easy to use, not expensive, it is programmable, its flexible,
etc.
The main part of this project is the Arduino board which acts as the
controller that receives data from PIR (Passive Infra-Red) sensor and
sends signal to the output which can be sound source or relay
connected to other component such as siren, horn, flashbulb and so
on. In this case we use buzzer which makes sound whenever any
motion happened beyond the PIR. The PIR works on the principle of
all the body generate some heat energy in the form of infrared which
is invisible to human eyes. But, it can be detected by electronic sensor.

Some thieves are smart and think different they try to bypass the PIR
by cutting its wires or breaking the PIR itself. But our project is
smarter than them and will not let them to get off without detection.
This is done by adding 5v relay in parallel with the PIR and using its
contacts to activate the sound in case of power cut out of the PIR.

Materials Required:
1. 1 x Arduino Uno(You can use any compatible).
2. 1 x P.I.R Sensor Module. 
3. 1 x LED. 
4. 1 x 9V Battery. 
5. 1 x 9V Battery Clip. 
6. 1 x Buzzer. 
7. 1 x Breadboard
8. Some Jumper Wires 
9. An USB Cable(Only for programming) 
10. A Computer (Only for programming)

Program and code:

;Boolean x
{ )( void setup
;pinMode (12, INPUT)
;pinMode (11, OUTPUT)
;Serial. Begin(9600)
}
{ )(void loop
;x= digitalRead (12)
{if (x==1)
;digitalWrite(11,HIGH)
;delay (50)
;Serial.println("there is motion")
}
{if (x==0)
;digitalWrite (11, LOW)
;delay (50)
;Serial.println(" no motion")
}
}
CONCLUSION

This system is very simple. And the working of this system is very
simple as well. In this system PIR sensor used for sensing and
then Arduino used for controlling and then A buzzer is used for
making sound. When anybody comes in range of PIR sensor, then
sensor sends a logic signal to Arduino then Arduino take control and
perform a given task. Hare a calling task is given to Arduino. Then
Arduino sends signals to buzzer for make a sound.

References:
1-DETAMAL (ANTI-THEFT DETECTOR) : THEFT CASE PREVENTION - Zalfie Ardian,
S.Kom., M.Eng, Sarini Vita Dewi, S.T,
2-Design and Implementation of Smart Home Security System with Arduino Based
Password Protection -. William Sohag Sarkar. And Farhan Rijvi
3- Home Security Alarm or a Motion Detector Using Arduino, P.I.R Sensor and LCD. -
By zishan.

You might also like