4th Phase Bbfc Project

Embed Size (px)

Citation preview

  • 8/3/2019 4th Phase Bbfc Project

    1/35

    GSM BASEDGSM BASED

    PERSON INTRUSION ALARM SYSTEMPERSON INTRUSION ALARM SYSTEM

    IN RESTRICTED AREASIN RESTRICTED AREAS

    PRESENTATIONPRESENTATION

    ONON

  • 8/3/2019 4th Phase Bbfc Project

    2/35

    MEMBERS ASSOCIATEDy M RAMAKANTy RITESH KUMAR PATROy SAMIR NANDA y SANDEEP BEHERA y RAJEEB MALLICK

    MENTOR :

    Er. Prof SMITA MOHANTY

  • 8/3/2019 4th Phase Bbfc Project

    3/35

    G OALS OF TALK

    y MOTIVATIONy BLOCK DIA G RAMy INDIVIDUAL CIRCUIT DESCRIPTIONy FINAL CIRCUIT DESCRIPTIONy CODINGy W ORKING MODELy CONCLUSION

  • 8/3/2019 4th Phase Bbfc Project

    4/35

    MOTIVATION FOR CHOOSIN G THEPROJECT

    A global wireless network deploy across businessenterprise location. The work of the administrator is to find a

    wired or wireless security device to prevent the theft attacks andthreats. So monitoring and to identify the security alert and

    configuring it is a time taking process for a larger organization.

    There are many home based security devices forsurveillance process, but they are either wired or expensive inuse. Where as my project deals with a security system with latest

    wireless technology with less expensive in cost when comparedto other security devices. Here I am using all the basiccomponents that are used in daily life like mobile phones, SIMcard, GSM modem etc, so this makes my project cheaper and

    very simple to use.

  • 8/3/2019 4th Phase Bbfc Project

    5/35

    AIM OF THE PROJECTThe Need for security to the house when we are in and moving along to the office will be great constraints for us. The communication hasbrought a way to secure the properties of our home. GSM BASEDHOUSE MAINTANENCE AND SECURITY SYSTEM FOR LEGLESS PEOPLE is a boon for legless people to easily control and

    monitor their houses from the place where they are right now by using their ordinary mobile phones. It serves two main objectives that ishouse maintenance and also offer increased security system.

    The first objective House maintenance is achieved by using microcontroller and relay circuit. The authorized person gives theacknowledgement to that device, then the microcontroller will switchon or off the electrical appliances and send the state of that appliances

    whether they are currently working or not. The authorized person candone this by using their normal mobile phones.

  • 8/3/2019 4th Phase Bbfc Project

    6/35

    The second objective of our paper is to offer increased house security that is when there is any intrusion or unauthorized entry the alert message issend to owner. Who can close the door and enable the security alarm

    system by sending a coded message to prevent from any actions of intruders. The whole project is based upon the hardware design withsoftware development using embedded system.

    This project design makes use of 8051 microcontroller for interfacing to

    various hardware interfaces.

    Technology today is seeing its heights in all the areas, especially in thearea of embedded system.

    It is true that every electronic gadget that is used in daily life right from a pc keyboard to a refrigerator is an embedded system.

    This itself shows how vastly the technology is expanding. As thetechnology is improving day to day many thing of our daily life became so

    simple and easy.

  • 8/3/2019 4th Phase Bbfc Project

    7/35

    Block Diagram

  • 8/3/2019 4th Phase Bbfc Project

    8/35

    CIRCUIT COMPONENTS OF PO W ER SUPPLY

    1.Ac Transformer

    2.Bridge Rectifier

    3.Ripple Filter

    4.Voltage Regulator

    5.Rheostat

    6. LED

    7.Switch

  • 8/3/2019 4th Phase Bbfc Project

    9/35

    PO W ER SUPPLY CIRCUIT

  • 8/3/2019 4th Phase Bbfc Project

    10/35

    MICROCONTROLLER y AT89C51 Microcontroller is used.

  • 8/3/2019 4th Phase Bbfc Project

    11/35

    MICROCONTROLLER CONNECTION

  • 8/3/2019 4th Phase Bbfc Project

    12/35

    IR SENSOR

  • 8/3/2019 4th Phase Bbfc Project

    13/35

    COMPONENTS OF TX AND RX SENSOR Controller pin

    Transistor

    Inductance

    Diode

    Resistance

  • 8/3/2019 4th Phase Bbfc Project

    14/35

    LIQUID CRYSTAL DISPLAY y LCD (LM016L) is used.

  • 8/3/2019 4th Phase Bbfc Project

    15/35

    SERIAL DRIVER

  • 8/3/2019 4th Phase Bbfc Project

    16/35

    Specifications :0.1 to 10mF external capacitor

    120 Kbits/sec data rate

    2 receivers active in shutdown mode (MAX213)

    Small 28-Pin SSOP package- uses 60% less space than SOIC

    Low-Power shutdown urrent:1mA

    Designed for RS-232 and V.28 applications

    Three-State TTL/CMOS receiver output

  • 8/3/2019 4th Phase Bbfc Project

    17/35

  • 8/3/2019 4th Phase Bbfc Project

    18/35

    G SM SPECIFICATION

    Device Name : W avecom

    ROM (Flash) : 16Mb

    RAM : 2Mb

    Operating Voltage : 3.1 4.5 V

    Receiving Frequency : 925 960 MHz

    Transmitting Frequency : 880 915 MHz

  • 8/3/2019 4th Phase Bbfc Project

    19/35

    G SM BLOCK DIA G RAM

  • 8/3/2019 4th Phase Bbfc Project

    20/35

    AT - COMMANDS

  • 8/3/2019 4th Phase Bbfc Project

    21/35

  • 8/3/2019 4th Phase Bbfc Project

    22/35

  • 8/3/2019 4th Phase Bbfc Project

    23/35

    CODING(Detection of obstacle)

    #include#include#include

    sbit ir=P1^4;code unsigned char no[]="9658553883",msg[]="A person has been detected";unsigned char i; void gsm(); void del(); void main(){lcdinit();lcddis(" G SM SECURITY");ser_init();ser_str("AT+CM G F=1\r");del();

    while(RI){RI=0;del();}ser_str("AT+CPMS=\"SM\"\r");del(); while(RI){RI=0;del();}

    while(1){if(!ir)

    {lcdcmd(0xc0);lcddis("Obstacle detd.

    ");gsm();while(!ir);}

    else{lcdcmd(0xc0);lcddis("Obstacle not detd.");}

    }

    }

  • 8/3/2019 4th Phase Bbfc Project

    24/35

    CODING(LCD)

    sbit rs=P3^7;sbit rw=P3^6;sbit en=P3^5; void lcddis(unsigned char

    *s); void lcddat(unsigned char); void lcdinit(); void lcdcmd(unsigned

    char); void delay(unsigned int); void delay(unsigned int k){unsigned int l;for(l=0;l

  • 8/3/2019 4th Phase Bbfc Project

    25/35

    CODING(SERIAL DRIVER)

    void ser_dat(unsigned char); void ser_str(unsigned char *str); void ser_init(); void ser_init()

    {SCON=0x50;TMOD=0x20;TH1=-3;TR1=1;} void ser_dat(unsigned char dat){SBUF=dat;

    while(TI==0);TI=0;} void ser_str(unsigned char *str)

    {unsigned char j=0; while (str[j]!=0)

    ser_dat(str[j++]);}

  • 8/3/2019 4th Phase Bbfc Project

    26/35

    SOFT W ARE REQUIREMENTS

    Operating System : W INDO W S XP, VISTA, LINUX etc.

    Software : KEIL SOFT W ARE (Programming language for

    the communication between the PCT sensor, Micro

    controller and the G SM modem).

    PROTEOUS: SIMULATION

    -C FLASH: Dumping code to microcontroller

  • 8/3/2019 4th Phase Bbfc Project

    27/35

  • 8/3/2019 4th Phase Bbfc Project

    28/35

    FINAL WORKING MODEL

  • 8/3/2019 4th Phase Bbfc Project

    29/35

    FUTURE SCOPE

    The modern mobile technology using the G SM featureis offering inspiring appearance and capability that once were not being able in use 15 years ago. So by making use of these technology further developments in the security aspects can be made there by reducing the cost of theproduct, increasing the accuracy and working of theproduct. Since the mobile phones are being used by

    millions of people worldwide, this project can beimplemented by each and every individual in near future.

  • 8/3/2019 4th Phase Bbfc Project

    30/35

    FUTURE ENHANCEMENTThe future scope of my project is highly rated because of its simplicity in working and economic in cost for settingup the device.

    In order to avoid the burglar activities when we go outby locking our home this will be necessary and itsactivation process is also quite simple, just we need toenable the sensor and we will receive an SMS if any unauthorized person enters the sensor zone and we cantake the necessary steps.

    Hence according to my view in near future each homeshould have this security device installed.

  • 8/3/2019 4th Phase Bbfc Project

    31/35

  • 8/3/2019 4th Phase Bbfc Project

    32/35

    CONCLUSIONI have established very clearly about the G SM Security system using SMS. W e can say that this is a birth for a newbrand era . G SM Security system using SMS can be appliedfor your security with convenience. G SM Security system

    has been taken into a new dimension.

    This document presents a mobile controlled and user-friendly approach to the available home security. It is real-time monitor-able and remote controllable. This systemcan easily be implemented because of its no necessity to wiring between the appliances since it uses wirelesscommunication standards. Another enhancement of thesystem is its high security.

  • 8/3/2019 4th Phase Bbfc Project

    33/35

    REFERENCESy TEXT BOOKS REFERED:1. The 8051 Microcontroller and Embedded systems

    by Muhammad Ali Mazidi and Janice G illispie Mazidi, Pearson Education.

    2. ATMEL 89S52 Data Sheets.

    y W EBSITES :

    www.atmel.com www.beyondlogic.org www.wikipedia.org www.howstuffworks.com

    www.alldatasheets.com

  • 8/3/2019 4th Phase Bbfc Project

    34/35

  • 8/3/2019 4th Phase Bbfc Project

    35/35