esd final edit
esd final edit
On
DOOR ALARM SYSTEM
By
Bharati Vidyapeeth
(Deemed to be University)
College of Engineering,
Pune – 4110043
1|Page
Bharati Vidyapeeth
(Deemed to be University)
College of Engineering,
Pune – 411043
CERTIFICATE
in partial fulfillment of the requirements for the award of credits for Project Based Learning
(PBL) Embedded System design Course of Bachelor of Technology Semester V, Electronics &
Communication Engineering.
2|Page
Index: -
4 Components used
6 Code used
7 Circuit Diagram
8 Results
9 Conclusion
9 Course Outcome
3|Page
Topic:
DOOR ALARM SYSTEM
Components used
1)Breadboard: A breadboard consists of plastic block holding a matrix of electrical
sockets of a size suitable for gripping thin connecting wire, component wires or the pins
of transistors and integrated circuits (ICs). The sockets are connected inside the board,
usually in rows of five sockets.
4|Page
Code used:
int IRSensor = 7;
int spk = 5;
void setup()
pinMode (spk,OUTPUT);
void loop()
if(statusSensor == 1)
digitalWrite(led, HIGH);
delay(500);
tone(spk, 1500,1000);
delay(500);
delay(500);
tone(spk, 1500,1000);
delay(500);
delay(3000);
5|Page
}
else
digitalWrite(led,LOW);
6|Page
Circuit Diagram
7|Page
Results
We used the components with us and arrange them in the way which is show in the circuit
diagram.As we use our laptop and upload the code using the software Arduino IDE,our model
becomes workable.A picture showing the same is attached below.
8|Page
Conclusion:
We have successfully completed the project titled “Door alarm system”
Course Outcome:
Write Micro-python program for hardware application
9|Page