Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 7

INSTITUTE OF BIOMEDICAL ENGINEERING & TECHNOLOGY

LIAQUAT UNIVERSITY OF MEDICAL AND HEALTH SCIENCES,


JAMSHORO

Project Title: SMART SECURITY SYSTEM


(SSS).
Submitted to: Ma’am Natasha Mukhtiar

Submitted by

AHMED KHOSO (20BME003 Group leader)


AREEJ M. ANWAR (20BME010)
RUBAB ASHRAF (19-20BME40)
DANISH KUMAR (20BME039)
M.AWAIS (20BME024)
INSTITUTE OF BIOMEDICAL ENGINEERING & TECHNOLOGY
LIAQUAT UNIVERSITY OF MEDICAL AND HEALTH SCIENCES,
JAMSHORO

OBJECTIVE: Detection of suspicious intrusion.


ABSTRACT: Security is becoming a major issue everywhere.
Our design called The Smart Security System (SSS) will allow
home and business owners to monitor their homes and
businesses. The SSS will be more convenient and portable since
every component (such as motion sensor ) will be built in one
device allowing customers to self-install the device. Today’s
security systems are not simply the product of technological
developments of the past few years, but the combination of
experience and hard work throughout decades. Alarm-based
security systems have the advantage of being easy to set up,
inexpensive and non obtrusive. Here, a security system has been
developed that uses sensors to detect any security violation and
sends out the alert signal by high intensity Buzzer.
INTRODUCTION: All over the world, security has been a major
concern in every home. Automated security systems are a useful
addition to today’s home where safety is an important issue.
According to the FBI, there were an estimated 2,103,787
burglaries in 2012. As you can see the amount of burglaries has
had a steady decrease in the past decade but they’re still
occurring at a very high rate. Home intrusions occur every 13
seconds in the United States. Your chances of becoming a
victim
INSTITUTE OF BIOMEDICAL ENGINEERING & TECHNOLOGY
LIAQUAT UNIVERSITY OF MEDICAL AND HEALTH SCIENCES,
JAMSHORO

can be severely decreased by having a home security system.


Surprisingly only 17% of homes in the United States have
security systems, meanwhile homes without security systems are
up to 300% more likely to be broken into. Home security
systems work on the simple concept of securing entry points into
a home with sensors that communicate with a control panel or
command center installed in a convenient location somewhere in
the home. Sensors are typically placed in doors that lead to and
from a house as well as easily accessible windows.
COMPONENTS AND SUPPLIES:

 Arduino UNO

 Jumper wires

 Ultrasonic sensor

 LEDs

 Buzzer

METHODOLOGY:
INSTITUTE OF BIOMEDICAL ENGINEERING & TECHNOLOGY
LIAQUAT UNIVERSITY OF MEDICAL AND HEALTH SCIENCES,
JAMSHORO
INSTITUTE OF BIOMEDICAL ENGINEERING & TECHNOLOGY
LIAQUAT UNIVERSITY OF MEDICAL AND HEALTH SCIENCES,
JAMSHORO

CODING OF ARDUINO:

const int trigPin = 12;


const int echoPin = 13;

const int LED1 = A0;


const int LED2 = A1;
const int LED3 = A2;
const int LED4 = A3;
const int LED5 = A4;
const int LED6 = A5;
const int LED7 = 2;

int duration = 0;
int distance = 0;

void setup()
{
pinMode(trigPin , OUTPUT);
pinMode(echoPin , INPUT);

pinMode(LED1 , OUTPUT);
pinMode(LED2 , OUTPUT);
pinMode(LED3 , OUTPUT);
pinMode(LED4 , OUTPUT);
pinMode(LED5 , OUTPUT);
pinMode(LED6 , OUTPUT);
pinMode(LED7 , OUTPUT);

Serial.begin(9600);

void loop()
{
digitalWrite(trigPin, LOW);
delayMicroseconds(2);
digitalWrite(trigPin, HIGH);
INSTITUTE OF BIOMEDICAL ENGINEERING & TECHNOLOGY
LIAQUAT UNIVERSITY OF MEDICAL AND HEALTH SCIENCES,
JAMSHORO

delayMicroseconds(10);
digitalWrite(trigPin, LOW);
duration = pulseIn(echoPin, HIGH);
distance = duration/58.2;

if ( distance <= 7 )
{
digitalWrite(LED1, HIGH);
}
else
{
digitalWrite(LED1, LOW);
}
if ( distance <= 14 )
{
digitalWrite(LED2, HIGH);
}
else
{
digitalWrite(LED2, LOW);
}
if ( distance <= 21 )
{
digitalWrite(LED3, HIGH);
}
else
{
digitalWrite(LED3, LOW);
}
if ( distance <= 28 )
{
digitalWrite(LED4, HIGH);
}
else
{
digitalWrite(LED4, LOW);
}
if ( distance <= 35 )
INSTITUTE OF BIOMEDICAL ENGINEERING & TECHNOLOGY
LIAQUAT UNIVERSITY OF MEDICAL AND HEALTH SCIENCES,
JAMSHORO

{
digitalWrite(LED5, HIGH);
}
else
{
digitalWrite(LED5, LOW);
}
if ( distance <= 42 )
{
digitalWrite(LED6, HIGH);
}
else
{
digitalWrite(LED6, LOW);
}
if ( distance <= 49 )
{
digitalWrite(LED7, HIGH);
}
else
{
digitalWrite(LED7, LOW);
}
delay(100);
}

RESULT: The Smart Security System (SSS) will allow home and
business owners to monitor their homes and businesses from any
possible intrusion, leading to a secure life.

You might also like