SlideShare a Scribd company logo
1 of 18
ARDUINO: FIRE ALARM SYSTEM
BEEE PROJECT BASED LEARNING
CHANDREYEE DUTTA-103004
FY-3
BATCH-C1
CONTENTS
1. INTRODUCTION
2. CIRCUIT DIAGRAM
3. COMPONENTS LIST
4. WORKING PRINCIPLE
5. APPLICATION
6. LEARNING & EXPERINCE
7. REFRENCE
INTRODUCTION
• What is a fire alarm system?
A fire alarm system warns people when smoke, fire, carbon monoxide or other fire-
related emergencies are detected. These alarms may be activated automatically from
smoke detectors, and heat detectors or may also be activated via manual fire alarm
activation devices such as manual call points or pull stations.
• Types of Fire alarm detectors?
These are few of the main types of fire alarm systems:
Heat detectors
Smoke detectors
Carbon Monoxide detectors
Multi-sensor detectors
Manual Call Points
This figure shows the types and variations of electronic fire detectors
CIRCUIT DIAGRAM
COMPONENT LIST
WORKING PRINCIPLE
• WHAT IS A Temperature Sensor [TMP36]?
The TMP36 temperature sensor is an easy way to measure temperature using an
Arduino! The sensor can measure a fairly wide range of temperature (-50°C to 125°C),
is fairly precise (0.1°C resolution).
Ground
+V(2.7 to
5.5 V)
Analog output
• What is a Piezo/ Piezoelectric sensor?
A piezoelectric sensor is a device that uses the piezoelectric effect to measure
changes in pressure, acceleration, temperature, strain, or force by converting them
an electrical charge.
• What is a Arduino Uno
R3?
The Arduino Uno R3 is a
microcontroller board
based on a removable,
dual-inline-package (DIP)
ATmega328 AVR
microcontroller. It has 20
digital input/output pins
(of which 6 can be used
as PWM outputs and 6
can be used as analog
inputs).
• How does a ARDUINO works?
Above image, we have seen the hardware components of an Arduino. Let’s see the
software components…
• Text editor
• Message area
• Text
• Console Toolbar
We use a code to make sure the Arduino works as per the requirements.
const int temperaturePin = 0;
int buzzer = 12;
void setup()
{
pinMode(buzzer, OUTPUT);
pinMode(4, OUTPUT);
pinMode(3, OUTPUT);
pinMode(2, OUTPUT);
}
void loop()
{
float voltage, degreesC;
voltage =
getVoltage(temperaturePin);
degreesC = (voltage - 0.5) * 100.0;
if(degreesC>40)
{
digitalWrite(buzzer, LOW);
delay(300); //delay half a second
tone(12, 10000, 100);
digitalWrite(4, HIGH);
delay(300);
digitalWrite(3, HIGH);
delay(300);
digitalWrite(2, HIGH);
delay(300);
}
}
float getVoltage(int pin)
{
return (analogRead(pin) *
0.004882814);
}
Output – final result
APPLICATION
• These are mostly used where smoke is common.
• They are best suited for fire detection in small confined spaces where rapidly
building high-heat-output fires are expected, in areas where ambient conditions
would not allow the use of other fire detection devices, or where very early warning
of fire is not required.
LEARNING & EXPERIENCE
• Fire safety
• Piezo- Piezoelectric Transducer
• Arduino
• Coding
REFERENCE
• https://bc-robotics.com/tutorials/using-a-tmp36-temperature-sensor-with-arduino/
• https://realpars.com/fire-alarm-system/
• https://www.arduino.cc/en/software
• https://www.autodesk.com/products/eagle/blog/piezoelectricity/
• https://airccse.com/ijcacs/papers/1216ijcacs03.pdf
• Texephyr IOT workshop,MITWPU- March,2021
• https://new-
courses.justice.eku.edu/FSE/FSE221/PPT/FireAlarmSystemOperationalBasics.pdf
• https://www.tinkercad.com/dashboard?type=circuits&collection=designs
THANK YOU

More Related Content

What's hot

What's hot (18)

Smart Safety Door with Servo Motors as Actuators, Passcode and DHT Sensors B...
Smart Safety Door with Servo Motors as Actuators, Passcode and DHT Sensors  B...Smart Safety Door with Servo Motors as Actuators, Passcode and DHT Sensors  B...
Smart Safety Door with Servo Motors as Actuators, Passcode and DHT Sensors B...
 
Porte à puce - Smart Safety Door based on Arduino UNO R3
Porte à puce - Smart Safety Door based on Arduino UNO R3Porte à puce - Smart Safety Door based on Arduino UNO R3
Porte à puce - Smart Safety Door based on Arduino UNO R3
 
Introduction to arduino!
Introduction to arduino!Introduction to arduino!
Introduction to arduino!
 
Porte à puce - Automatic Door based on Arduino UNO R3
Porte à puce - Automatic Door based on Arduino UNO R3Porte à puce - Automatic Door based on Arduino UNO R3
Porte à puce - Automatic Door based on Arduino UNO R3
 
Embedded systems الانظمة المدمجة
Embedded systems  الانظمة المدمجة Embedded systems  الانظمة المدمجة
Embedded systems الانظمة المدمجة
 
Introduction to Arduino Webinar
Introduction to Arduino WebinarIntroduction to Arduino Webinar
Introduction to Arduino Webinar
 
SMC PTE-30-CH Digital Timer
SMC PTE-30-CH Digital TimerSMC PTE-30-CH Digital Timer
SMC PTE-30-CH Digital Timer
 
SIEMENS RWD CONTROLLER SERIES
SIEMENS RWD  CONTROLLER SERIES SIEMENS RWD  CONTROLLER SERIES
SIEMENS RWD CONTROLLER SERIES
 
publish manual
publish manualpublish manual
publish manual
 
Fine movement occupancy sensor for HVAC and lighting control
Fine movement occupancy sensor for HVAC and lighting controlFine movement occupancy sensor for HVAC and lighting control
Fine movement occupancy sensor for HVAC and lighting control
 
Six channel fire monitoring & control
Six channel fire monitoring & controlSix channel fire monitoring & control
Six channel fire monitoring & control
 
Porte à puce
Porte à pucePorte à puce
Porte à puce
 
Smartline020 4-f user-manual
Smartline020 4-f user-manualSmartline020 4-f user-manual
Smartline020 4-f user-manual
 
Electronics Multisensor Shield
Electronics Multisensor ShieldElectronics Multisensor Shield
Electronics Multisensor Shield
 
8051 Microcontroller Timer
8051 Microcontroller Timer8051 Microcontroller Timer
8051 Microcontroller Timer
 
AVR_Course_Day7 timers counters and interrupt programming
AVR_Course_Day7 timers counters and  interrupt programmingAVR_Course_Day7 timers counters and  interrupt programming
AVR_Course_Day7 timers counters and interrupt programming
 
Arduino اردوينو
Arduino اردوينوArduino اردوينو
Arduino اردوينو
 
Encoder
EncoderEncoder
Encoder
 

Similar to Ard ui no fire alarm system

Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.ppt
SAURABHKUMAR892774
 

Similar to Ard ui no fire alarm system (20)

Lab2ppt
Lab2pptLab2ppt
Lab2ppt
 
2009 11-17-arduino-basics
2009 11-17-arduino-basics2009 11-17-arduino-basics
2009 11-17-arduino-basics
 
GSM Based SMS fire alert system
GSM Based SMS fire alert systemGSM Based SMS fire alert system
GSM Based SMS fire alert system
 
IoT Basics with few Embedded System Connections for sensors
IoT Basics with few Embedded System Connections for sensorsIoT Basics with few Embedded System Connections for sensors
IoT Basics with few Embedded System Connections for sensors
 
Arduino
ArduinoArduino
Arduino
 
Arduino projects & tutorials
Arduino projects & tutorialsArduino projects & tutorials
Arduino projects & tutorials
 
FIRE ALARM SYSTEM PPT.pptx
FIRE ALARM SYSTEM PPT.pptxFIRE ALARM SYSTEM PPT.pptx
FIRE ALARM SYSTEM PPT.pptx
 
Arduino intro.pptx
Arduino intro.pptxArduino intro.pptx
Arduino intro.pptx
 
Smart Blind stick by using arduino uno and sensor
 Smart Blind stick  by using arduino  uno  and sensor Smart Blind stick  by using arduino  uno  and sensor
Smart Blind stick by using arduino uno and sensor
 
Color Sensor.pptx
Color Sensor.pptxColor Sensor.pptx
Color Sensor.pptx
 
Arduino based Applications-part 6
Arduino based Applications-part 6Arduino based Applications-part 6
Arduino based Applications-part 6
 
Arduino Slides With Neopixels
Arduino Slides With NeopixelsArduino Slides With Neopixels
Arduino Slides With Neopixels
 
Smart Safety Door based on Arduino Uno R3
Smart Safety Door based on Arduino Uno R3Smart Safety Door based on Arduino Uno R3
Smart Safety Door based on Arduino Uno R3
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.ppt
 
arduino.ppt
arduino.pptarduino.ppt
arduino.ppt
 
Fun with arduino
Fun with arduinoFun with arduino
Fun with arduino
 
ARDUINO (1).pdf
ARDUINO (1).pdfARDUINO (1).pdf
ARDUINO (1).pdf
 
Arduino 101
Arduino 101Arduino 101
Arduino 101
 
Arduino based digital smart thermometer.pptx
Arduino based digital smart thermometer.pptxArduino based digital smart thermometer.pptx
Arduino based digital smart thermometer.pptx
 
Robotics and Automation Using Arduino
Robotics and Automation Using ArduinoRobotics and Automation Using Arduino
Robotics and Automation Using Arduino
 

Recently uploaded

21P35A0312 Internship eccccccReport.docx
21P35A0312 Internship eccccccReport.docx21P35A0312 Internship eccccccReport.docx
21P35A0312 Internship eccccccReport.docx
rahulmanepalli02
 
Tembisa Central Terminating Pills +27838792658 PHOMOLONG Top Abortion Pills F...
Tembisa Central Terminating Pills +27838792658 PHOMOLONG Top Abortion Pills F...Tembisa Central Terminating Pills +27838792658 PHOMOLONG Top Abortion Pills F...
Tembisa Central Terminating Pills +27838792658 PHOMOLONG Top Abortion Pills F...
drjose256
 
Final DBMS Manual (2).pdf final lab manual
Final DBMS Manual (2).pdf final lab manualFinal DBMS Manual (2).pdf final lab manual
Final DBMS Manual (2).pdf final lab manual
BalamuruganV28
 

Recently uploaded (20)

History of Indian Railways - the story of Growth & Modernization
History of Indian Railways - the story of Growth & ModernizationHistory of Indian Railways - the story of Growth & Modernization
History of Indian Railways - the story of Growth & Modernization
 
litvinenko_Henry_Intrusion_Hong-Kong_2024.pdf
litvinenko_Henry_Intrusion_Hong-Kong_2024.pdflitvinenko_Henry_Intrusion_Hong-Kong_2024.pdf
litvinenko_Henry_Intrusion_Hong-Kong_2024.pdf
 
SLIDESHARE PPT-DECISION MAKING METHODS.pptx
SLIDESHARE PPT-DECISION MAKING METHODS.pptxSLIDESHARE PPT-DECISION MAKING METHODS.pptx
SLIDESHARE PPT-DECISION MAKING METHODS.pptx
 
Research Methodolgy & Intellectual Property Rights Series 1
Research Methodolgy & Intellectual Property Rights Series 1Research Methodolgy & Intellectual Property Rights Series 1
Research Methodolgy & Intellectual Property Rights Series 1
 
Raashid final report on Embedded Systems
Raashid final report on Embedded SystemsRaashid final report on Embedded Systems
Raashid final report on Embedded Systems
 
Software Engineering Practical File Front Pages.pdf
Software Engineering Practical File Front Pages.pdfSoftware Engineering Practical File Front Pages.pdf
Software Engineering Practical File Front Pages.pdf
 
21P35A0312 Internship eccccccReport.docx
21P35A0312 Internship eccccccReport.docx21P35A0312 Internship eccccccReport.docx
21P35A0312 Internship eccccccReport.docx
 
analog-vs-digital-communication (concept of analog and digital).pptx
analog-vs-digital-communication (concept of analog and digital).pptxanalog-vs-digital-communication (concept of analog and digital).pptx
analog-vs-digital-communication (concept of analog and digital).pptx
 
Tembisa Central Terminating Pills +27838792658 PHOMOLONG Top Abortion Pills F...
Tembisa Central Terminating Pills +27838792658 PHOMOLONG Top Abortion Pills F...Tembisa Central Terminating Pills +27838792658 PHOMOLONG Top Abortion Pills F...
Tembisa Central Terminating Pills +27838792658 PHOMOLONG Top Abortion Pills F...
 
NEWLETTER FRANCE HELICES/ SDS SURFACE DRIVES - MAY 2024
NEWLETTER FRANCE HELICES/ SDS SURFACE DRIVES - MAY 2024NEWLETTER FRANCE HELICES/ SDS SURFACE DRIVES - MAY 2024
NEWLETTER FRANCE HELICES/ SDS SURFACE DRIVES - MAY 2024
 
Filters for Electromagnetic Compatibility Applications
Filters for Electromagnetic Compatibility ApplicationsFilters for Electromagnetic Compatibility Applications
Filters for Electromagnetic Compatibility Applications
 
Dynamo Scripts for Task IDs and Space Naming.pptx
Dynamo Scripts for Task IDs and Space Naming.pptxDynamo Scripts for Task IDs and Space Naming.pptx
Dynamo Scripts for Task IDs and Space Naming.pptx
 
What is Coordinate Measuring Machine? CMM Types, Features, Functions
What is Coordinate Measuring Machine? CMM Types, Features, FunctionsWhat is Coordinate Measuring Machine? CMM Types, Features, Functions
What is Coordinate Measuring Machine? CMM Types, Features, Functions
 
Artificial Intelligence in due diligence
Artificial Intelligence in due diligenceArtificial Intelligence in due diligence
Artificial Intelligence in due diligence
 
15-Minute City: A Completely New Horizon
15-Minute City: A Completely New Horizon15-Minute City: A Completely New Horizon
15-Minute City: A Completely New Horizon
 
CLOUD COMPUTING SERVICES - Cloud Reference Modal
CLOUD COMPUTING SERVICES - Cloud Reference ModalCLOUD COMPUTING SERVICES - Cloud Reference Modal
CLOUD COMPUTING SERVICES - Cloud Reference Modal
 
Augmented Reality (AR) with Augin Software.pptx
Augmented Reality (AR) with Augin Software.pptxAugmented Reality (AR) with Augin Software.pptx
Augmented Reality (AR) with Augin Software.pptx
 
Final DBMS Manual (2).pdf final lab manual
Final DBMS Manual (2).pdf final lab manualFinal DBMS Manual (2).pdf final lab manual
Final DBMS Manual (2).pdf final lab manual
 
Diploma Engineering Drawing Qp-2024 Ece .pdf
Diploma Engineering Drawing Qp-2024 Ece .pdfDiploma Engineering Drawing Qp-2024 Ece .pdf
Diploma Engineering Drawing Qp-2024 Ece .pdf
 
Working Principle of Echo Sounder and Doppler Effect.pdf
Working Principle of Echo Sounder and Doppler Effect.pdfWorking Principle of Echo Sounder and Doppler Effect.pdf
Working Principle of Echo Sounder and Doppler Effect.pdf
 

Ard ui no fire alarm system

  • 1. ARDUINO: FIRE ALARM SYSTEM BEEE PROJECT BASED LEARNING CHANDREYEE DUTTA-103004 FY-3 BATCH-C1
  • 2. CONTENTS 1. INTRODUCTION 2. CIRCUIT DIAGRAM 3. COMPONENTS LIST 4. WORKING PRINCIPLE 5. APPLICATION 6. LEARNING & EXPERINCE 7. REFRENCE
  • 3. INTRODUCTION • What is a fire alarm system? A fire alarm system warns people when smoke, fire, carbon monoxide or other fire- related emergencies are detected. These alarms may be activated automatically from smoke detectors, and heat detectors or may also be activated via manual fire alarm activation devices such as manual call points or pull stations.
  • 4. • Types of Fire alarm detectors? These are few of the main types of fire alarm systems: Heat detectors Smoke detectors Carbon Monoxide detectors Multi-sensor detectors Manual Call Points
  • 5. This figure shows the types and variations of electronic fire detectors
  • 8. WORKING PRINCIPLE • WHAT IS A Temperature Sensor [TMP36]? The TMP36 temperature sensor is an easy way to measure temperature using an Arduino! The sensor can measure a fairly wide range of temperature (-50°C to 125°C), is fairly precise (0.1°C resolution). Ground +V(2.7 to 5.5 V) Analog output
  • 9. • What is a Piezo/ Piezoelectric sensor? A piezoelectric sensor is a device that uses the piezoelectric effect to measure changes in pressure, acceleration, temperature, strain, or force by converting them an electrical charge.
  • 10. • What is a Arduino Uno R3? The Arduino Uno R3 is a microcontroller board based on a removable, dual-inline-package (DIP) ATmega328 AVR microcontroller. It has 20 digital input/output pins (of which 6 can be used as PWM outputs and 6 can be used as analog inputs).
  • 11. • How does a ARDUINO works? Above image, we have seen the hardware components of an Arduino. Let’s see the software components… • Text editor • Message area • Text • Console Toolbar
  • 12. We use a code to make sure the Arduino works as per the requirements. const int temperaturePin = 0; int buzzer = 12; void setup() { pinMode(buzzer, OUTPUT); pinMode(4, OUTPUT); pinMode(3, OUTPUT); pinMode(2, OUTPUT); } void loop() { float voltage, degreesC; voltage = getVoltage(temperaturePin); degreesC = (voltage - 0.5) * 100.0; if(degreesC>40) { digitalWrite(buzzer, LOW); delay(300); //delay half a second tone(12, 10000, 100); digitalWrite(4, HIGH); delay(300); digitalWrite(3, HIGH); delay(300); digitalWrite(2, HIGH); delay(300); } } float getVoltage(int pin) { return (analogRead(pin) * 0.004882814); }
  • 13.
  • 15. APPLICATION • These are mostly used where smoke is common. • They are best suited for fire detection in small confined spaces where rapidly building high-heat-output fires are expected, in areas where ambient conditions would not allow the use of other fire detection devices, or where very early warning of fire is not required.
  • 16. LEARNING & EXPERIENCE • Fire safety • Piezo- Piezoelectric Transducer • Arduino • Coding
  • 17. REFERENCE • https://bc-robotics.com/tutorials/using-a-tmp36-temperature-sensor-with-arduino/ • https://realpars.com/fire-alarm-system/ • https://www.arduino.cc/en/software • https://www.autodesk.com/products/eagle/blog/piezoelectricity/ • https://airccse.com/ijcacs/papers/1216ijcacs03.pdf • Texephyr IOT workshop,MITWPU- March,2021 • https://new- courses.justice.eku.edu/FSE/FSE221/PPT/FireAlarmSystemOperationalBasics.pdf • https://www.tinkercad.com/dashboard?type=circuits&collection=designs