0% found this document useful (0 votes)
4 views9 pages

esd final edit

Uploaded by

existveer61
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views9 pages

esd final edit

Uploaded by

existveer61
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 9

Project Based Learning Report

On
DOOR ALARM SYSTEM

Submitted in the partial fulfillment of the requirements


For the Project based learning in Embedded System Design
in
Electronics & Communication Engineering

By

2014111041 Vishal Dubey


20141110 Kishan chokhat
Under the guidance of Course In-charge
Dr. Arundhati A.Shinde

Department of Electronics & Communication Engineering

Bharati Vidyapeeth
(Deemed to be University)
College of Engineering,
Pune – 4110043

Academic Year: 2022-23

1|Page
Bharati Vidyapeeth
(Deemed to be University)
College of Engineering,
Pune – 411043

DEPARTMENT OF ELECTRONICS & COMMUNICATION ENGINEERING

CERTIFICATE

Certified that the Project Based Learning report entitled,


“DOOR ALARM SYSTEM” work done by

2014111041 Vishal Dubey


20141110 Kishan chokhat

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.

Date: 8th November 2022

Dr. Arundhati A.Shinde Dr. Arundhati A.Shinde


Course In-charge Professor & Head

2|Page
Index: -

Page No. Contents


4 Topic

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.

2)Arduino UNO: Arduino UNO is a microcontroller board based on the


ATmega328P. It has 14 digital input/output pins (of which 6 can be used as PWM
outputs), 6 analog inputs, a 16 MHz ceramic resonator, a USB connection, a power
jack, an ICSP header and a reset button.

4|Page
Code used:
int IRSensor = 7;

int spk = 5;

int led =2;

void setup()

pinMode (IRSensor, INPUT);

pinMode (spk,OUTPUT);

pinMode (led, OUTPUT);

void loop()

int statusSensor= digitalRead(IRSensor);

if(statusSensor == 1)

digitalWrite(led, HIGH);

tone(spk, 1000, 1000);

delay(500);

tone(spk, 1500,1000);

delay(500);

tone(spk, 1000, 1000);

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

You might also like