Quantcast
Channel: EngineersGarage - pir sensor
Viewing all articles
Browse latest Browse all 8

Arduino Based Security System using GSM & PIR Sensor

$
0
0
 This Code is only visible to Registered users. Please Login/Register 

 

Arduino Based Security System using GSM & PIR Sensor - Circuit Diagram
Saddam Khan

Contributor: 

Saddam Khan

 

In present time Home/Office and many other place security is most important. 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). 

Here we have tried making a simple arduino based security system using a GSM module and a PIR sensor. It gives a call to a pre specified phone number when any kind of intrusion is found. In the below pictures you could see the implementation of this security system.

security system

security system

In most of security systems GSM is widely used. Here in this project GSM is used for making a voice call for alert. The main aim of this project is secure your house/office from thief.

In this circuit GSM and PIR sensor sensor are used. When any human (thief) comes in the range of PIR sensor, Arduino make a call to a fixed number. It means anybody in your house/office, then you can take a possible action against thief at same time.

security system

security system

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 GSM module which is used for calling purpose. 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 GSM module for make a voice call.

security system

As we know that GSM module works on AT commands so Arduino sends AT commands to GSM module to make a call. To make call AT command is given below:

ATD<Mobile Number>;

If human body is moving in range of PIR sensor, its sends signal to Arduino continuously and Arduino make call again and again until Moving body comes in rest and until goes out of range. 

Circuit description

Circuit of this security system is very simple. Digital Pin number 9 of Arduino Pro Mini is directly connected to output pin of PIR sensor. And Rx and Tx pins of Arduino are directly connected to the Tx and Rx pins of GSM module respectively. It means a cross connection take place between Arduino and GSM module. Due to in-build Rs232 serial communication section on the GSM module, there is no need of RS232 serial communication section. PIR sensor is also available in market easily. And you can build it at your home also.

The programming part of this system is also very easy. In programming only we have to read the PIR sensor output and then we have to send only single AT command to GSM module to make a voice call. Programmer can also use message alert in this system instead voice call or with voice call by adding message AT commands. To send AT commands to GSM module Serial.println(); function used.

Serial.println (“ATD+919610126059;”);

Serial.println ();

Components Used

1.      GSM Module

2.      PIR Sensor

3.      Arduino

 

 


Viewing all articles
Browse latest Browse all 8

Trending Articles