You are on page 1of 10

Team members-

o BL.EN.U4ECE22044-Abhinav Vikram
o  BL.EN.U4ECE22070-D.S.Raga Vinay
o  BL.EN.U4ECE22064-Eshwar Sai
Reddy

SECURITY
WA K E U P C A L L
AIM

• To make Security Wakeup call for lock


system, Using sim module 800L, RFID ,
Keypad(3x4)  and Arduino UNO board.
• Our main goal is to alert owner , if
any robber attacks takes place.
Keypad (3x4)
COMPONENT Sim module 800L
S REQUIRED RFID kit
Arduino UNO board 
Jumper wires
Antenna
CIRCUIT DIAGRAM
LOGIC

Search for tag

If present If not present

If Tag If not
matched the matched the
Search for tag
count will count will
equal to 0 increase
If the tag matched

Then it ask to
enter pin

If the pin
If the pin correct wrong ,then count
the count will 0 will increase  and
and door open cycle will
continue
If the count is
2

Then owner The count


will receives will remain
call constant

And the count Cycle will


will 0 continue
GUI CODE
import processing.serial.*;
PFont f;
Serial myPort;
String val;

void setup(){
println(Serial.list());
String portName = Serial.list()[2];
myPort = new Serial(this, portName, 9600);
size(500,500);
f= createFont("Arial Black",24,true);}
void draw(){

if ( myPort.available() > 0){

val=myPort.readStringUntil('\n');

background(50,50,0);

textFont(f,24);

text(val,70,140);

println(val);

}
R E S U LT A N D I N F E R E N C E
• If in case of two or more continuous wrong passwords have been entered by the user by using
keypad ,then the Arduino UNO interfaces with the sim module 800L and later the user gets a call
regarding the wrong attempts.

• Similarly, if a person tries to enter or unlock the door using RFID tag,  in case of two or
unsuccessful attempts, the RFID module interfaces with the Arduino UNO and makes the call to the user
regarding the unsuccessful attempts.

• The main motto of this experiment is to enhance safety and security and keep updating the user in case
of any burglar activity took place.

You might also like