home security system ppt

Upload: arun-arya

Post on 14-Apr-2018

220 views

Category:

Documents


0 download

TRANSCRIPT

  • 7/27/2019 Home Security System Ppt

    1/13

    GSM TECHNIQUES

    VIA INTERFACING WITH CVISHAV VIKASH

    SANDEEP YADAV

    AYUSH KUSH

    HOME SECURITY SYSTEMUSING

    PIC CONTROLLER

  • 7/27/2019 Home Security System Ppt

    2/13

    Home security system is needed for occupantsconvenience and safety.

    The system is a wireless home network whichcontains a GSM gateway.

    Two kinds of wireless security sensor that areinfrared security nodes and alarm nodes.

    This design and its implementation are of low

    cost, low power consumption and GSM(GlobalSystem for Mobile Communication) based.

  • 7/27/2019 Home Security System Ppt

    3/13

    Security is a basic need of all living creature. So thisfulfill this purpose with low implement cost.

    As the security needed for money , jewellery & forimportant documents in different fields(like offices,houses etc.). It also fulfill this requirement .

    Mainly designed for home & offices but also

    beneficial in a large scale industries & buildings.

    NEED OF IT AND WHERE..?

  • 7/27/2019 Home Security System Ppt

    4/13

    PIC16F877A Controller

    GSM(Global System for Mobile Communication)modem

    Sim card for GSM modemPIC development kit

    IR sensors

    BuzzerPower supply

    Destination mobile (Receiver)

    HARDWARE REQUIRMENTS :-

  • 7/27/2019 Home Security System Ppt

    5/13

    MicroC pro complier

    This complier is basically used for PIC family

    It converts the c program body in HEX file

    It is user friendly because of its large library set

    It is compatible with a lot of devices

    Embedded C programming

    SOFTWARE REQUIRMENTS :-

  • 7/27/2019 Home Security System Ppt

    6/13

  • 7/27/2019 Home Security System Ppt

    7/13

    BLOCK DIAGRAM :-

  • 7/27/2019 Home Security System Ppt

    8/13

    IR SENSOR :-

    Infrared sensors

    Combination of 2 type of diodes.

    Transmitter- LED Receiver- photodiode

    Range 5 m(approx.)

    Signal 1 transmitted at no interrupts

    Signal 0 transmitted at interrupts

  • 7/27/2019 Home Security System Ppt

    9/13

    MICROCONTROLLER :-

    Contains 40 pins.

    Have EEPROM on chip(256 bytes)

    It have predefined libraries

    HEX file is burnt on chip by using flash magic(burner)

    5 ports(A,B,C,D,E)

    Serial comm. by UART

    Operating freq.-20MHz

    35 instruction set

  • 7/27/2019 Home Security System Ppt

    10/13

    GSM MODEM :-

    It works on a baud rate of 9600

    It contains transmitter & receiver

    It communicate serially

    Operating voltage is 5V

    Have large number of AT commands for different purpose

    Work similar as our mobile phone

  • 7/27/2019 Home Security System Ppt

    11/13

    C PROGRAM BODY :-

    void main(){UART1_Init(9600);Delay_ms(500);

    TRISA=0x01;

    if(PORTA==0x01){UART1_Write('A');Delay_ms(500);

    UART1_Write('T');Delay_ms(500);

    UART1_Write('+');Delay_ms(500);UART1_Write('C');Delay_ms(500);

    UART1_Write('M');Delay_ms(500);

  • 7/27/2019 Home Security System Ppt

    12/13

    UART1_Write('7');Delay_ms(500);UART1_Write('3');

    Delay_ms(500);UART1_Write('1');

    Delay_ms(500);UART1_Write('7');

    Delay_ms(500);UART1_Write('1');

    Delay_ms(500);UART1_Write('9');

    Delay_ms(500);UART1_Write('9');

  • 7/27/2019 Home Security System Ppt

    13/13

    THANKS