SlideShare una empresa de Scribd logo
1 de 14
Department of EEE
PROJECT REPORT
Project name : Smoke Detection System
Course no. : EEE 2211
Course name : Measurement and Instrumentation
Submitted by :
14.02.05.134 - A.O.M. Shamsuddoha
14.02.05.136 - Shadab Sadman
14.02.05.157 - Muid Hasan Anik
14.01.05.131 – Mustafizur Rahman
SMOKE
DETECTION
SYSTEM
ABSTRACT
A Smoke Detector is a fire protection device
that automatically detects smoke/gases and
also gives us warning to be aware of it, with
some protection system to handle the situation.
Many fire accident occurs in our surrounding
due to absence of human in the right place at
the right time. That is the importance of the
project, it can minimize such accidents. Thus it
got immense importance in our practical life.
Equipment used:
1. Arduino uno
2. Gas sensor : MQ-2
3. Temperature sensor : LM-35
4. Servo Motor
5. Buzzer Alarm
6. LED
7. 9V DC Battery
8. 7805 IC
9. Gas lighter (for testing purpose)
Some Instrument Details: (in short)
1. MQ-2 Gas Sensor :
Among various types of MQ series gas sensors weselected MQ-2 for their wide
detecting scope, fast response and High sensitivity. They are suitable for
detecting LPG( Liquified Petroleum Gas), i-butane, propane, methane ,alcohol,
Hydrogen, smoke. The gas sensor is mainly composed of tin dioxide on a
ceramic base. The resistance of the sensor varies depending on the
concentration of the reducing gases on the air. We used the module here,
wheresensor’s6pinsareconnected as need internally with resistance.Fourpins
are outside there, VCC (with 5V dc), GND (with Arduino gnd), A0 (from where
we took output, connected it to arduino A0) and D0 (we didn’t use). The power
led(red) turns on when it powered, and the Dout led (green) turns on when it
detects gas.
2. LM-35 temperaturesensor:
The LM35 series are precision integrated-circuit temperature sensors, whose
output voltage is linearly proportionalto the Celsius (Centigrade) temperature.
The LM35 does not require any external calibration or trimming to provide
typical accuracies of ±1⁄4°C at room temperature and ±3⁄4°C over a full −55 to
+150°C temperature range.
Other Features :
I. Calibrated directly in ° Celsius (Centigrade)
II. 0.5°C accuracy guaranteeable (at +25°C)
III. Suitable for remote applications
IV. Less than 60 μA currentdrain
V. Low self-heating, 0.08°C in still air
3. 7805 IC
We needed this componenthere to provideextra 5V dc voltage. Because
when we connected two sensors in parallel, current is also distributed in
two parallel paths. As a result LM-35 sensor receives negligible
current(becauseof POTon the MQ-2 it draws mostthe current) and it
doesn’twork properly. For this we need to use7805 IC to providethe
shortageof currentthrough LM-35 as required. Here capacitors arefor
reducing ripple voltage, though it’s not mandatory to use(wehave skipped
this without any trouble). An extra 9V battery is needed to operate the IC.
4. ServoMotor :
A servomotor is a rotary actuator or linear actuator that allows for precise
control of angular or linear position, velocity and acceleration. Itconsists of
a suitable motor coupled to a sensor for position feedback. In our project
use of servo motor is quite limited in fact it is optional, we need this for
protection purposeto on and off the water pump switch.
Circuit Diagram:
Image view :
Working Principle :
We have used two different sensors : gas sensor and temperature sensor. The
MQ-2 gas sensor senses smoke(dueto fire) and gas leakage ( like methane,
LPG etc. in our kitchen or factory). And the LM-35 temperature sensor is for
detecting temperature rise due to fire. At firstour Arduino UNO will get
information from the two sensors, and then it will comparethe values
according to the condition given in the code. If the values are under the
tolerance level everything will be normal. But if either the temperature or the
concentration of gas rises abovethe condition then the buzzer will be alarmed.
Also if temperature or gas increases further it will operate a servo motor
whosework will be to ON the switch of a water pump to control the fire by
spreading water over the place(we could not arrangethe water system part in
our project). We programmed this device that is implemented on the Arduino-
Uno (ATmega328p) and the value of the concentration of the smokeis given
high so that normalsmoking gas will not be the reason of the device alarm.
This device is designed such as only real fire occurrencewill be the reason for
this device alarming. After the device alarms, the servo motor shaftwill
automatically rotate half of a cycle or 180 degree to switch on the water pump
or water spray. Thus this device can eradicate fire. Gradually when the
condition is under control or back to normal again the servo will switch OFF the
pump and also the buzzer willbe stopped.
Code :
#include <Servo.h>
Servo myservo;
int buzz = 10;
int gas = 0;
int smoke= A0;
int temp = 0;
int lm35 = A1;
void setup()
{
myservo.attach(3);
pinMode(buzz,OUTPUT);
pinMode(smoke,INPUT);
pinMode(lm35,INPUT);
Serial.begin(9600);
}
Microcontroller
(Arduino UNO)
Get info./values
fromgas sensor
Get info./values
fromtemp.
sensor
Compere values
according to
condition/Code
Operatethe
buzzer and
servo
void loop()
{
temp = analogRead(lm35);
int celsius = temp/2 - 5;
Serial.println(celsius);
gas = analogRead(smoke);
Serial.println(gas);
if(celsius>40 || gas>190)
{
if(celsius>45 || gas>250)
{
digitalWrite(buzz,HIGH);
delay(200);
digitalWrite(buzz,LOW);
delay(200);
int pos = 180;
myservo.write(pos);
delay(5);
}
else
{
int pos = 0;
myservo.write(pos);
delay(5);
digitalWrite(buzz,HIGH);
delay(800);
digitalWrite(buzz,LOW);
delay(800);
}
}
else
{
digitalWrite(buzz,LOW);
delay(1000);
}
}
Troubleshooting :
1. When we connect both the sensors with Arduino 5V and GND in parallel,
our LM-35 was not responding as it was responding individually(correctly)
without the MQ-2 gas sensor, dueto currentshortagein it’s branch. For
solving the problemwe used 7805 regulator IC.
2. In different environmentwe need to calibrate the MQ-2 gas sensor
separately either by adjusting the value of it’s POT or change the rangeof
it’s value to operate in the CODE. This is becauseconcentration of gases it
sense, are not same in every place or environment; so it gives values of
different ranges in different places.
3. We also faces difficulties calibrating the LM-35 to show it’s reading in
Celsius scale.
Application:
1. This projectcan be used commercially as a security purposedevice that will
detect fire and gas leakage in our kitchen or factory, mall, museum, hotels,
restaurants, laboratory etc.
2. In many home in our city there occur accident due to gas leakage in the
kitchen, this projectcan be used to minimize this occurrence.
3. On Every Garments Factory, there is a chance of accident for the occurrence
of fire. That is why this device is necessary to use.
Discussion:
Though smokedetection system is quite a simple projectbut it has immense
importance and necessity in our practical life. We programmed this device that
is implemented on the Arduino-Uno (ATmega328p) and the value of the
concentration of the smokeis given high so that normalsmoking gas will not
be the reason of the device alarm. We can also add somefurther
improvement in this project. We are planning to use the dc water pump
without servo directly with the Arduino for more reliable and fastresponse.
And also we want to add a GSM module here for sending sms to the owner
when smoke is detected. Itwill be beneficial when no one at home or at a
vacant place.

Más contenido relacionado

La actualidad más candente

Fire Alarm System Project
Fire Alarm System ProjectFire Alarm System Project
Fire Alarm System ProjectRinkuNahar
 
Iot based smart helmet used in mining industry
Iot based smart helmet used in mining industryIot based smart helmet used in mining industry
Iot based smart helmet used in mining industryarrss arf
 
Movement Sensed Automatic Door Opening System
Movement Sensed Automatic Door Opening SystemMovement Sensed Automatic Door Opening System
Movement Sensed Automatic Door Opening SystemEdgefxkits & Solutions
 
Somke detector project presentation
Somke detector project presentationSomke detector project presentation
Somke detector project presentationRija Fatima
 
All Types of sensor in power point presentation
All Types of sensor in power point presentation All Types of sensor in power point presentation
All Types of sensor in power point presentation karansansare
 
Gas Leakage Detector using Arduino with SMS Alert - Engineering Project
Gas Leakage Detector using Arduino with SMS Alert - Engineering ProjectGas Leakage Detector using Arduino with SMS Alert - Engineering Project
Gas Leakage Detector using Arduino with SMS Alert - Engineering ProjectCircuitsToday
 
Fire Alarm, Smoke Detector and Automatic Sprinkle System
Fire Alarm, Smoke Detector and Automatic Sprinkle SystemFire Alarm, Smoke Detector and Automatic Sprinkle System
Fire Alarm, Smoke Detector and Automatic Sprinkle SystemKhairul Azhar
 
Gas & smoke detector
Gas & smoke detectorGas & smoke detector
Gas & smoke detectorToushik Paul
 
Simple automatic water leval controller
Simple automatic water leval controllerSimple automatic water leval controller
Simple automatic water leval controllerselvalakshmi24
 
Smart door project ppt shivnaresh likhar
Smart door project ppt shivnaresh likharSmart door project ppt shivnaresh likhar
Smart door project ppt shivnaresh likharShivnaresh Likhar
 
Automatic street light
Automatic street lightAutomatic street light
Automatic street lightAnu Antony
 
Gsm based fire alert system
Gsm based fire alert systemGsm based fire alert system
Gsm based fire alert systemNisha Kumari
 
project report on fire alarm
project report on fire alarmproject report on fire alarm
project report on fire alarmRattan Pal
 
Smart door project report shivnaresh likhar
Smart door project report shivnaresh likharSmart door project report shivnaresh likhar
Smart door project report shivnaresh likharShivnaresh Likhar
 
Fire detection system using arduino
Fire detection system using arduino Fire detection system using arduino
Fire detection system using arduino UT-028
 
Temperature based fan speed control &amp; monitoring using arduino
Temperature based fan speed control &amp; monitoring using arduinoTemperature based fan speed control &amp; monitoring using arduino
Temperature based fan speed control &amp; monitoring using arduinoJagannath Dutta
 

La actualidad más candente (20)

Low cost fire alarm.vce
Low cost fire alarm.vceLow cost fire alarm.vce
Low cost fire alarm.vce
 
Fire Alarm System Project
Fire Alarm System ProjectFire Alarm System Project
Fire Alarm System Project
 
Iot based smart helmet used in mining industry
Iot based smart helmet used in mining industryIot based smart helmet used in mining industry
Iot based smart helmet used in mining industry
 
Movement Sensed Automatic Door Opening System
Movement Sensed Automatic Door Opening SystemMovement Sensed Automatic Door Opening System
Movement Sensed Automatic Door Opening System
 
Fire alarm system
Fire alarm systemFire alarm system
Fire alarm system
 
Somke detector project presentation
Somke detector project presentationSomke detector project presentation
Somke detector project presentation
 
All Types of sensor in power point presentation
All Types of sensor in power point presentation All Types of sensor in power point presentation
All Types of sensor in power point presentation
 
Sensor of smoke
Sensor of smokeSensor of smoke
Sensor of smoke
 
Gas Leakage Detector using Arduino with SMS Alert - Engineering Project
Gas Leakage Detector using Arduino with SMS Alert - Engineering ProjectGas Leakage Detector using Arduino with SMS Alert - Engineering Project
Gas Leakage Detector using Arduino with SMS Alert - Engineering Project
 
Fire Alarm, Smoke Detector and Automatic Sprinkle System
Fire Alarm, Smoke Detector and Automatic Sprinkle SystemFire Alarm, Smoke Detector and Automatic Sprinkle System
Fire Alarm, Smoke Detector and Automatic Sprinkle System
 
Gas & smoke detector
Gas & smoke detectorGas & smoke detector
Gas & smoke detector
 
Simple automatic water leval controller
Simple automatic water leval controllerSimple automatic water leval controller
Simple automatic water leval controller
 
Smart door project ppt shivnaresh likhar
Smart door project ppt shivnaresh likharSmart door project ppt shivnaresh likhar
Smart door project ppt shivnaresh likhar
 
Automatic street light
Automatic street lightAutomatic street light
Automatic street light
 
Gsm based fire alert system
Gsm based fire alert systemGsm based fire alert system
Gsm based fire alert system
 
project report on fire alarm
project report on fire alarmproject report on fire alarm
project report on fire alarm
 
LPG gas leekage dectection
LPG gas  leekage  dectectionLPG gas  leekage  dectection
LPG gas leekage dectection
 
Smart door project report shivnaresh likhar
Smart door project report shivnaresh likharSmart door project report shivnaresh likhar
Smart door project report shivnaresh likhar
 
Fire detection system using arduino
Fire detection system using arduino Fire detection system using arduino
Fire detection system using arduino
 
Temperature based fan speed control &amp; monitoring using arduino
Temperature based fan speed control &amp; monitoring using arduinoTemperature based fan speed control &amp; monitoring using arduino
Temperature based fan speed control &amp; monitoring using arduino
 

Destacado

LPG – Liquefied Petroleum Gas & Gas Detection System
LPG – Liquefied Petroleum Gas & Gas Detection SystemLPG – Liquefied Petroleum Gas & Gas Detection System
LPG – Liquefied Petroleum Gas & Gas Detection SystemMonzer Salahdine
 
Pembersih asap rokok dengan sensor mq2 best arduino project
Pembersih asap rokok dengan sensor mq2 best arduino projectPembersih asap rokok dengan sensor mq2 best arduino project
Pembersih asap rokok dengan sensor mq2 best arduino projectJejen Jaenudin
 
Light level and gas monitoring system
Light level and gas monitoring systemLight level and gas monitoring system
Light level and gas monitoring systemStephen Ahiante
 
LPG Detection Mechatronic System
LPG Detection Mechatronic SystemLPG Detection Mechatronic System
LPG Detection Mechatronic SystemAbhijeet Rathi
 
wireless security control system and sensor network for smoke and fire detection
wireless security control system and sensor network for smoke and fire detectionwireless security control system and sensor network for smoke and fire detection
wireless security control system and sensor network for smoke and fire detectionJOLLUSUDARSHANREDDY
 
Wireless gas leakage detector with device control
Wireless gas leakage detector  with device controlWireless gas leakage detector  with device control
Wireless gas leakage detector with device controlReshma Gowri Chandran
 
LPG Gas detector
LPG Gas detectorLPG Gas detector
LPG Gas detectorajay singh
 
Gas sensor Alarm
Gas sensor AlarmGas sensor Alarm
Gas sensor AlarmUdit Jain
 
Project presentation on wireless lpg leakage detector
Project presentation on wireless lpg leakage detectorProject presentation on wireless lpg leakage detector
Project presentation on wireless lpg leakage detectorPETER ASIGRI
 

Destacado (13)

LPG – Liquefied Petroleum Gas & Gas Detection System
LPG – Liquefied Petroleum Gas & Gas Detection SystemLPG – Liquefied Petroleum Gas & Gas Detection System
LPG – Liquefied Petroleum Gas & Gas Detection System
 
Pembersih asap rokok dengan sensor mq2 best arduino project
Pembersih asap rokok dengan sensor mq2 best arduino projectPembersih asap rokok dengan sensor mq2 best arduino project
Pembersih asap rokok dengan sensor mq2 best arduino project
 
Light level and gas monitoring system
Light level and gas monitoring systemLight level and gas monitoring system
Light level and gas monitoring system
 
Presentation1
Presentation1Presentation1
Presentation1
 
Lpg presentation
Lpg presentationLpg presentation
Lpg presentation
 
LPG Detection Mechatronic System
LPG Detection Mechatronic SystemLPG Detection Mechatronic System
LPG Detection Mechatronic System
 
wireless security control system and sensor network for smoke and fire detection
wireless security control system and sensor network for smoke and fire detectionwireless security control system and sensor network for smoke and fire detection
wireless security control system and sensor network for smoke and fire detection
 
Wireless gas leakage detector with device control
Wireless gas leakage detector  with device controlWireless gas leakage detector  with device control
Wireless gas leakage detector with device control
 
Ppt
PptPpt
Ppt
 
LPG Gas detector
LPG Gas detectorLPG Gas detector
LPG Gas detector
 
Gas sensor Alarm
Gas sensor AlarmGas sensor Alarm
Gas sensor Alarm
 
Gas Sensor MQ-2
Gas Sensor MQ-2Gas Sensor MQ-2
Gas Sensor MQ-2
 
Project presentation on wireless lpg leakage detector
Project presentation on wireless lpg leakage detectorProject presentation on wireless lpg leakage detector
Project presentation on wireless lpg leakage detector
 

Similar a Smoke Detection System

IRJET- LPG Leakage Detection With Prevention and Automatic Cylinder Booking w...
IRJET- LPG Leakage Detection With Prevention and Automatic Cylinder Booking w...IRJET- LPG Leakage Detection With Prevention and Automatic Cylinder Booking w...
IRJET- LPG Leakage Detection With Prevention and Automatic Cylinder Booking w...IRJET Journal
 
IRJET -Arduino based Gas Leakage Detection for Living Security
IRJET -Arduino based Gas Leakage Detection for Living SecurityIRJET -Arduino based Gas Leakage Detection for Living Security
IRJET -Arduino based Gas Leakage Detection for Living SecurityIRJET Journal
 
Design and Implementation of Automatic Fire Fighting for Building using Perip...
Design and Implementation of Automatic Fire Fighting for Building using Perip...Design and Implementation of Automatic Fire Fighting for Building using Perip...
Design and Implementation of Automatic Fire Fighting for Building using Perip...ijtsrd
 
FINAL PRESENTATION.pptx
FINAL PRESENTATION.pptxFINAL PRESENTATION.pptx
FINAL PRESENTATION.pptxaksh499978
 
IRJET - Fire and Harmful Gas Detection Notification System
IRJET - Fire and Harmful Gas Detection Notification SystemIRJET - Fire and Harmful Gas Detection Notification System
IRJET - Fire and Harmful Gas Detection Notification SystemIRJET Journal
 
IRJET- IoT based LPG Gas Booking and Monitoring System
IRJET-  	  IoT based LPG Gas Booking and Monitoring SystemIRJET-  	  IoT based LPG Gas Booking and Monitoring System
IRJET- IoT based LPG Gas Booking and Monitoring SystemIRJET Journal
 
Overheat and smoke detection with gsm
Overheat and smoke detection with gsmOverheat and smoke detection with gsm
Overheat and smoke detection with gsmVishal Kumar
 
PROJECT Room envirment monitoring system synopsis
PROJECT  Room envirment monitoring system synopsisPROJECT  Room envirment monitoring system synopsis
PROJECT Room envirment monitoring system synopsisprashant shukla
 
Zigbee based intelligent helemet for coal miners ppt
Zigbee based intelligent helemet for coal miners pptZigbee based intelligent helemet for coal miners ppt
Zigbee based intelligent helemet for coal miners pptVenkatesh Kaduru
 
Bluetooth Based Fire Detection and Robust Protection System By Using Arduino
Bluetooth Based Fire Detection and Robust Protection System By Using ArduinoBluetooth Based Fire Detection and Robust Protection System By Using Arduino
Bluetooth Based Fire Detection and Robust Protection System By Using ArduinoIRJET Journal
 
SMART ELECTRIC GEYSER (report)
SMART ELECTRIC GEYSER (report)SMART ELECTRIC GEYSER (report)
SMART ELECTRIC GEYSER (report)Arpit Kurel
 
PIC Microcontroller Based Baby Incubator Using Sensors
PIC Microcontroller Based Baby Incubator Using SensorsPIC Microcontroller Based Baby Incubator Using Sensors
PIC Microcontroller Based Baby Incubator Using SensorsIRJET Journal
 
IRJET - Transformers Monitoring using Arduino
IRJET -  	  Transformers Monitoring using ArduinoIRJET -  	  Transformers Monitoring using Arduino
IRJET - Transformers Monitoring using ArduinoIRJET Journal
 
IRJET- Gsm Based Smart Home Automation using Sensors
IRJET-  	  Gsm Based Smart Home Automation using SensorsIRJET-  	  Gsm Based Smart Home Automation using Sensors
IRJET- Gsm Based Smart Home Automation using SensorsIRJET Journal
 
GSM Based SMS fire alert system
GSM Based SMS fire alert systemGSM Based SMS fire alert system
GSM Based SMS fire alert systemSoumyadeep Kal
 
IRJET- Flame Scaner Circuit
IRJET- Flame Scaner CircuitIRJET- Flame Scaner Circuit
IRJET- Flame Scaner CircuitIRJET Journal
 
Fire Detection and Alerting System for Train Using Zigbee Communication
Fire Detection and Alerting System for Train Using Zigbee CommunicationFire Detection and Alerting System for Train Using Zigbee Communication
Fire Detection and Alerting System for Train Using Zigbee CommunicationIRJET Journal
 
IRJET- Water Pump Controller using Arduino UNO
IRJET- Water Pump Controller using Arduino UNOIRJET- Water Pump Controller using Arduino UNO
IRJET- Water Pump Controller using Arduino UNOIRJET Journal
 

Similar a Smoke Detection System (20)

Ic2414251429
Ic2414251429Ic2414251429
Ic2414251429
 
IRJET- LPG Leakage Detection With Prevention and Automatic Cylinder Booking w...
IRJET- LPG Leakage Detection With Prevention and Automatic Cylinder Booking w...IRJET- LPG Leakage Detection With Prevention and Automatic Cylinder Booking w...
IRJET- LPG Leakage Detection With Prevention and Automatic Cylinder Booking w...
 
IRJET -Arduino based Gas Leakage Detection for Living Security
IRJET -Arduino based Gas Leakage Detection for Living SecurityIRJET -Arduino based Gas Leakage Detection for Living Security
IRJET -Arduino based Gas Leakage Detection for Living Security
 
Design and Implementation of Automatic Fire Fighting for Building using Perip...
Design and Implementation of Automatic Fire Fighting for Building using Perip...Design and Implementation of Automatic Fire Fighting for Building using Perip...
Design and Implementation of Automatic Fire Fighting for Building using Perip...
 
FINAL PRESENTATION.pptx
FINAL PRESENTATION.pptxFINAL PRESENTATION.pptx
FINAL PRESENTATION.pptx
 
IRJET - Fire and Harmful Gas Detection Notification System
IRJET - Fire and Harmful Gas Detection Notification SystemIRJET - Fire and Harmful Gas Detection Notification System
IRJET - Fire and Harmful Gas Detection Notification System
 
IRJET- IoT based LPG Gas Booking and Monitoring System
IRJET-  	  IoT based LPG Gas Booking and Monitoring SystemIRJET-  	  IoT based LPG Gas Booking and Monitoring System
IRJET- IoT based LPG Gas Booking and Monitoring System
 
Overheat and smoke detection with gsm
Overheat and smoke detection with gsmOverheat and smoke detection with gsm
Overheat and smoke detection with gsm
 
PROJECT Room envirment monitoring system synopsis
PROJECT  Room envirment monitoring system synopsisPROJECT  Room envirment monitoring system synopsis
PROJECT Room envirment monitoring system synopsis
 
Zigbee based intelligent helemet for coal miners ppt
Zigbee based intelligent helemet for coal miners pptZigbee based intelligent helemet for coal miners ppt
Zigbee based intelligent helemet for coal miners ppt
 
Bluetooth Based Fire Detection and Robust Protection System By Using Arduino
Bluetooth Based Fire Detection and Robust Protection System By Using ArduinoBluetooth Based Fire Detection and Robust Protection System By Using Arduino
Bluetooth Based Fire Detection and Robust Protection System By Using Arduino
 
SMART ELECTRIC GEYSER (report)
SMART ELECTRIC GEYSER (report)SMART ELECTRIC GEYSER (report)
SMART ELECTRIC GEYSER (report)
 
PIC Microcontroller Based Baby Incubator Using Sensors
PIC Microcontroller Based Baby Incubator Using SensorsPIC Microcontroller Based Baby Incubator Using Sensors
PIC Microcontroller Based Baby Incubator Using Sensors
 
IRJET - Transformers Monitoring using Arduino
IRJET -  	  Transformers Monitoring using ArduinoIRJET -  	  Transformers Monitoring using Arduino
IRJET - Transformers Monitoring using Arduino
 
IRJET- Gsm Based Smart Home Automation using Sensors
IRJET-  	  Gsm Based Smart Home Automation using SensorsIRJET-  	  Gsm Based Smart Home Automation using Sensors
IRJET- Gsm Based Smart Home Automation using Sensors
 
GSM Based SMS fire alert system
GSM Based SMS fire alert systemGSM Based SMS fire alert system
GSM Based SMS fire alert system
 
IRJET- Flame Scaner Circuit
IRJET- Flame Scaner CircuitIRJET- Flame Scaner Circuit
IRJET- Flame Scaner Circuit
 
Fire Detection and Alerting System for Train Using Zigbee Communication
Fire Detection and Alerting System for Train Using Zigbee CommunicationFire Detection and Alerting System for Train Using Zigbee Communication
Fire Detection and Alerting System for Train Using Zigbee Communication
 
IRJET- Water Pump Controller using Arduino UNO
IRJET- Water Pump Controller using Arduino UNOIRJET- Water Pump Controller using Arduino UNO
IRJET- Water Pump Controller using Arduino UNO
 
Six channel fire monitoring & control
Six channel fire monitoring & controlSix channel fire monitoring & control
Six channel fire monitoring & control
 

Último

定制(Salford学位证)索尔福德大学毕业证成绩单原版一比一
定制(Salford学位证)索尔福德大学毕业证成绩单原版一比一定制(Salford学位证)索尔福德大学毕业证成绩单原版一比一
定制(Salford学位证)索尔福德大学毕业证成绩单原版一比一ss ss
 
Vip Udupi Call Girls 7001305949 WhatsApp Number 24x7 Best Services
Vip Udupi Call Girls 7001305949 WhatsApp Number 24x7 Best ServicesVip Udupi Call Girls 7001305949 WhatsApp Number 24x7 Best Services
Vip Udupi Call Girls 7001305949 WhatsApp Number 24x7 Best Servicesnajka9823
 
Real Sure (Call Girl) in I.G.I. Airport 8377087607 Hot Call Girls In Delhi NCR
Real Sure (Call Girl) in I.G.I. Airport 8377087607 Hot Call Girls In Delhi NCRReal Sure (Call Girl) in I.G.I. Airport 8377087607 Hot Call Girls In Delhi NCR
Real Sure (Call Girl) in I.G.I. Airport 8377087607 Hot Call Girls In Delhi NCRdollysharma2066
 
5S - House keeping (Seiri, Seiton, Seiso, Seiketsu, Shitsuke)
5S - House keeping (Seiri, Seiton, Seiso, Seiketsu, Shitsuke)5S - House keeping (Seiri, Seiton, Seiso, Seiketsu, Shitsuke)
5S - House keeping (Seiri, Seiton, Seiso, Seiketsu, Shitsuke)861c7ca49a02
 
vip Krishna Nagar Call Girls 9999965857 Call or WhatsApp Now Book
vip Krishna Nagar Call Girls 9999965857 Call or WhatsApp Now Bookvip Krishna Nagar Call Girls 9999965857 Call or WhatsApp Now Book
vip Krishna Nagar Call Girls 9999965857 Call or WhatsApp Now Bookmanojkuma9823
 
RBS学位证,鹿特丹商学院毕业证书1:1制作
RBS学位证,鹿特丹商学院毕业证书1:1制作RBS学位证,鹿特丹商学院毕业证书1:1制作
RBS学位证,鹿特丹商学院毕业证书1:1制作f3774p8b
 
《1:1仿制麦克马斯特大学毕业证|订制麦克马斯特大学文凭》
《1:1仿制麦克马斯特大学毕业证|订制麦克马斯特大学文凭》《1:1仿制麦克马斯特大学毕业证|订制麦克马斯特大学文凭》
《1:1仿制麦克马斯特大学毕业证|订制麦克马斯特大学文凭》o8wvnojp
 
(办理学位证)韩国汉阳大学毕业证成绩单原版一比一
(办理学位证)韩国汉阳大学毕业证成绩单原版一比一(办理学位证)韩国汉阳大学毕业证成绩单原版一比一
(办理学位证)韩国汉阳大学毕业证成绩单原版一比一C SSS
 
Beautiful Sapna Call Girls CP 9711199012 ☎ Call /Whatsapps
Beautiful Sapna Call Girls CP 9711199012 ☎ Call /WhatsappsBeautiful Sapna Call Girls CP 9711199012 ☎ Call /Whatsapps
Beautiful Sapna Call Girls CP 9711199012 ☎ Call /Whatsappssapnasaifi408
 
Hifi Defence Colony Call Girls Service WhatsApp -> 9999965857 Available 24x7 ...
Hifi Defence Colony Call Girls Service WhatsApp -> 9999965857 Available 24x7 ...Hifi Defence Colony Call Girls Service WhatsApp -> 9999965857 Available 24x7 ...
Hifi Defence Colony Call Girls Service WhatsApp -> 9999965857 Available 24x7 ...srsj9000
 
1:1原版定制美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实留信入库#永久存档#真实可查#diploma#degree
1:1原版定制美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实留信入库#永久存档#真实可查#diploma#degree1:1原版定制美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实留信入库#永久存档#真实可查#diploma#degree
1:1原版定制美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实留信入库#永久存档#真实可查#diploma#degreeyuu sss
 
Papular No 1 Online Istikhara Amil Baba Pakistan Amil Baba In Karachi Amil B...
Papular No 1 Online Istikhara Amil Baba Pakistan  Amil Baba In Karachi Amil B...Papular No 1 Online Istikhara Amil Baba Pakistan  Amil Baba In Karachi Amil B...
Papular No 1 Online Istikhara Amil Baba Pakistan Amil Baba In Karachi Amil B...Authentic No 1 Amil Baba In Pakistan
 
定制(UI学位证)爱达荷大学毕业证成绩单原版一比一
定制(UI学位证)爱达荷大学毕业证成绩单原版一比一定制(UI学位证)爱达荷大学毕业证成绩单原版一比一
定制(UI学位证)爱达荷大学毕业证成绩单原版一比一ss ss
 
Hifi Babe North Delhi Call Girl Service Fun Tonight
Hifi Babe North Delhi Call Girl Service Fun TonightHifi Babe North Delhi Call Girl Service Fun Tonight
Hifi Babe North Delhi Call Girl Service Fun TonightKomal Khan
 
Call Girls in Dwarka Sub City 💯Call Us 🔝8264348440🔝
Call Girls in Dwarka Sub City 💯Call Us 🔝8264348440🔝Call Girls in Dwarka Sub City 💯Call Us 🔝8264348440🔝
Call Girls in Dwarka Sub City 💯Call Us 🔝8264348440🔝soniya singh
 
定制(USF学位证)旧金山大学毕业证成绩单原版一比一
定制(USF学位证)旧金山大学毕业证成绩单原版一比一定制(USF学位证)旧金山大学毕业证成绩单原版一比一
定制(USF学位证)旧金山大学毕业证成绩单原版一比一ss ss
 
existing product research b2 Sunderland Culture
existing product research b2 Sunderland Cultureexisting product research b2 Sunderland Culture
existing product research b2 Sunderland CultureChloeMeadows1
 
Erfurt FH学位证,埃尔福特应用技术大学毕业证书1:1制作
Erfurt FH学位证,埃尔福特应用技术大学毕业证书1:1制作Erfurt FH学位证,埃尔福特应用技术大学毕业证书1:1制作
Erfurt FH学位证,埃尔福特应用技术大学毕业证书1:1制作f3774p8b
 
专业一比一美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实工艺展示#真实防伪#diploma#degree
专业一比一美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实工艺展示#真实防伪#diploma#degree专业一比一美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实工艺展示#真实防伪#diploma#degree
专业一比一美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实工艺展示#真实防伪#diploma#degreeyuu sss
 
原版1:1复刻斯坦福大学毕业证Stanford毕业证留信学历认证
原版1:1复刻斯坦福大学毕业证Stanford毕业证留信学历认证原版1:1复刻斯坦福大学毕业证Stanford毕业证留信学历认证
原版1:1复刻斯坦福大学毕业证Stanford毕业证留信学历认证gwhohjj
 

Último (20)

定制(Salford学位证)索尔福德大学毕业证成绩单原版一比一
定制(Salford学位证)索尔福德大学毕业证成绩单原版一比一定制(Salford学位证)索尔福德大学毕业证成绩单原版一比一
定制(Salford学位证)索尔福德大学毕业证成绩单原版一比一
 
Vip Udupi Call Girls 7001305949 WhatsApp Number 24x7 Best Services
Vip Udupi Call Girls 7001305949 WhatsApp Number 24x7 Best ServicesVip Udupi Call Girls 7001305949 WhatsApp Number 24x7 Best Services
Vip Udupi Call Girls 7001305949 WhatsApp Number 24x7 Best Services
 
Real Sure (Call Girl) in I.G.I. Airport 8377087607 Hot Call Girls In Delhi NCR
Real Sure (Call Girl) in I.G.I. Airport 8377087607 Hot Call Girls In Delhi NCRReal Sure (Call Girl) in I.G.I. Airport 8377087607 Hot Call Girls In Delhi NCR
Real Sure (Call Girl) in I.G.I. Airport 8377087607 Hot Call Girls In Delhi NCR
 
5S - House keeping (Seiri, Seiton, Seiso, Seiketsu, Shitsuke)
5S - House keeping (Seiri, Seiton, Seiso, Seiketsu, Shitsuke)5S - House keeping (Seiri, Seiton, Seiso, Seiketsu, Shitsuke)
5S - House keeping (Seiri, Seiton, Seiso, Seiketsu, Shitsuke)
 
vip Krishna Nagar Call Girls 9999965857 Call or WhatsApp Now Book
vip Krishna Nagar Call Girls 9999965857 Call or WhatsApp Now Bookvip Krishna Nagar Call Girls 9999965857 Call or WhatsApp Now Book
vip Krishna Nagar Call Girls 9999965857 Call or WhatsApp Now Book
 
RBS学位证,鹿特丹商学院毕业证书1:1制作
RBS学位证,鹿特丹商学院毕业证书1:1制作RBS学位证,鹿特丹商学院毕业证书1:1制作
RBS学位证,鹿特丹商学院毕业证书1:1制作
 
《1:1仿制麦克马斯特大学毕业证|订制麦克马斯特大学文凭》
《1:1仿制麦克马斯特大学毕业证|订制麦克马斯特大学文凭》《1:1仿制麦克马斯特大学毕业证|订制麦克马斯特大学文凭》
《1:1仿制麦克马斯特大学毕业证|订制麦克马斯特大学文凭》
 
(办理学位证)韩国汉阳大学毕业证成绩单原版一比一
(办理学位证)韩国汉阳大学毕业证成绩单原版一比一(办理学位证)韩国汉阳大学毕业证成绩单原版一比一
(办理学位证)韩国汉阳大学毕业证成绩单原版一比一
 
Beautiful Sapna Call Girls CP 9711199012 ☎ Call /Whatsapps
Beautiful Sapna Call Girls CP 9711199012 ☎ Call /WhatsappsBeautiful Sapna Call Girls CP 9711199012 ☎ Call /Whatsapps
Beautiful Sapna Call Girls CP 9711199012 ☎ Call /Whatsapps
 
Hifi Defence Colony Call Girls Service WhatsApp -> 9999965857 Available 24x7 ...
Hifi Defence Colony Call Girls Service WhatsApp -> 9999965857 Available 24x7 ...Hifi Defence Colony Call Girls Service WhatsApp -> 9999965857 Available 24x7 ...
Hifi Defence Colony Call Girls Service WhatsApp -> 9999965857 Available 24x7 ...
 
1:1原版定制美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实留信入库#永久存档#真实可查#diploma#degree
1:1原版定制美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实留信入库#永久存档#真实可查#diploma#degree1:1原版定制美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实留信入库#永久存档#真实可查#diploma#degree
1:1原版定制美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实留信入库#永久存档#真实可查#diploma#degree
 
Papular No 1 Online Istikhara Amil Baba Pakistan Amil Baba In Karachi Amil B...
Papular No 1 Online Istikhara Amil Baba Pakistan  Amil Baba In Karachi Amil B...Papular No 1 Online Istikhara Amil Baba Pakistan  Amil Baba In Karachi Amil B...
Papular No 1 Online Istikhara Amil Baba Pakistan Amil Baba In Karachi Amil B...
 
定制(UI学位证)爱达荷大学毕业证成绩单原版一比一
定制(UI学位证)爱达荷大学毕业证成绩单原版一比一定制(UI学位证)爱达荷大学毕业证成绩单原版一比一
定制(UI学位证)爱达荷大学毕业证成绩单原版一比一
 
Hifi Babe North Delhi Call Girl Service Fun Tonight
Hifi Babe North Delhi Call Girl Service Fun TonightHifi Babe North Delhi Call Girl Service Fun Tonight
Hifi Babe North Delhi Call Girl Service Fun Tonight
 
Call Girls in Dwarka Sub City 💯Call Us 🔝8264348440🔝
Call Girls in Dwarka Sub City 💯Call Us 🔝8264348440🔝Call Girls in Dwarka Sub City 💯Call Us 🔝8264348440🔝
Call Girls in Dwarka Sub City 💯Call Us 🔝8264348440🔝
 
定制(USF学位证)旧金山大学毕业证成绩单原版一比一
定制(USF学位证)旧金山大学毕业证成绩单原版一比一定制(USF学位证)旧金山大学毕业证成绩单原版一比一
定制(USF学位证)旧金山大学毕业证成绩单原版一比一
 
existing product research b2 Sunderland Culture
existing product research b2 Sunderland Cultureexisting product research b2 Sunderland Culture
existing product research b2 Sunderland Culture
 
Erfurt FH学位证,埃尔福特应用技术大学毕业证书1:1制作
Erfurt FH学位证,埃尔福特应用技术大学毕业证书1:1制作Erfurt FH学位证,埃尔福特应用技术大学毕业证书1:1制作
Erfurt FH学位证,埃尔福特应用技术大学毕业证书1:1制作
 
专业一比一美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实工艺展示#真实防伪#diploma#degree
专业一比一美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实工艺展示#真实防伪#diploma#degree专业一比一美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实工艺展示#真实防伪#diploma#degree
专业一比一美国加州州立大学东湾分校毕业证成绩单pdf电子版制作修改#真实工艺展示#真实防伪#diploma#degree
 
原版1:1复刻斯坦福大学毕业证Stanford毕业证留信学历认证
原版1:1复刻斯坦福大学毕业证Stanford毕业证留信学历认证原版1:1复刻斯坦福大学毕业证Stanford毕业证留信学历认证
原版1:1复刻斯坦福大学毕业证Stanford毕业证留信学历认证
 

Smoke Detection System

  • 1. Department of EEE PROJECT REPORT Project name : Smoke Detection System Course no. : EEE 2211 Course name : Measurement and Instrumentation Submitted by : 14.02.05.134 - A.O.M. Shamsuddoha 14.02.05.136 - Shadab Sadman 14.02.05.157 - Muid Hasan Anik 14.01.05.131 – Mustafizur Rahman
  • 2. SMOKE DETECTION SYSTEM ABSTRACT A Smoke Detector is a fire protection device that automatically detects smoke/gases and also gives us warning to be aware of it, with some protection system to handle the situation. Many fire accident occurs in our surrounding due to absence of human in the right place at the right time. That is the importance of the project, it can minimize such accidents. Thus it got immense importance in our practical life.
  • 3. Equipment used: 1. Arduino uno 2. Gas sensor : MQ-2 3. Temperature sensor : LM-35 4. Servo Motor 5. Buzzer Alarm 6. LED 7. 9V DC Battery 8. 7805 IC 9. Gas lighter (for testing purpose) Some Instrument Details: (in short) 1. MQ-2 Gas Sensor :
  • 4. Among various types of MQ series gas sensors weselected MQ-2 for their wide detecting scope, fast response and High sensitivity. They are suitable for detecting LPG( Liquified Petroleum Gas), i-butane, propane, methane ,alcohol, Hydrogen, smoke. The gas sensor is mainly composed of tin dioxide on a ceramic base. The resistance of the sensor varies depending on the concentration of the reducing gases on the air. We used the module here, wheresensor’s6pinsareconnected as need internally with resistance.Fourpins are outside there, VCC (with 5V dc), GND (with Arduino gnd), A0 (from where we took output, connected it to arduino A0) and D0 (we didn’t use). The power led(red) turns on when it powered, and the Dout led (green) turns on when it detects gas. 2. LM-35 temperaturesensor: The LM35 series are precision integrated-circuit temperature sensors, whose output voltage is linearly proportionalto the Celsius (Centigrade) temperature. The LM35 does not require any external calibration or trimming to provide
  • 5. typical accuracies of ±1⁄4°C at room temperature and ±3⁄4°C over a full −55 to +150°C temperature range. Other Features : I. Calibrated directly in ° Celsius (Centigrade) II. 0.5°C accuracy guaranteeable (at +25°C) III. Suitable for remote applications IV. Less than 60 μA currentdrain V. Low self-heating, 0.08°C in still air 3. 7805 IC We needed this componenthere to provideextra 5V dc voltage. Because when we connected two sensors in parallel, current is also distributed in two parallel paths. As a result LM-35 sensor receives negligible current(becauseof POTon the MQ-2 it draws mostthe current) and it doesn’twork properly. For this we need to use7805 IC to providethe shortageof currentthrough LM-35 as required. Here capacitors arefor reducing ripple voltage, though it’s not mandatory to use(wehave skipped this without any trouble). An extra 9V battery is needed to operate the IC. 4. ServoMotor :
  • 6. A servomotor is a rotary actuator or linear actuator that allows for precise control of angular or linear position, velocity and acceleration. Itconsists of a suitable motor coupled to a sensor for position feedback. In our project use of servo motor is quite limited in fact it is optional, we need this for protection purposeto on and off the water pump switch.
  • 10. We have used two different sensors : gas sensor and temperature sensor. The MQ-2 gas sensor senses smoke(dueto fire) and gas leakage ( like methane, LPG etc. in our kitchen or factory). And the LM-35 temperature sensor is for detecting temperature rise due to fire. At firstour Arduino UNO will get information from the two sensors, and then it will comparethe values according to the condition given in the code. If the values are under the tolerance level everything will be normal. But if either the temperature or the concentration of gas rises abovethe condition then the buzzer will be alarmed. Also if temperature or gas increases further it will operate a servo motor whosework will be to ON the switch of a water pump to control the fire by spreading water over the place(we could not arrangethe water system part in our project). We programmed this device that is implemented on the Arduino- Uno (ATmega328p) and the value of the concentration of the smokeis given high so that normalsmoking gas will not be the reason of the device alarm. This device is designed such as only real fire occurrencewill be the reason for this device alarming. After the device alarms, the servo motor shaftwill automatically rotate half of a cycle or 180 degree to switch on the water pump or water spray. Thus this device can eradicate fire. Gradually when the condition is under control or back to normal again the servo will switch OFF the pump and also the buzzer willbe stopped.
  • 11. Code : #include <Servo.h> Servo myservo; int buzz = 10; int gas = 0; int smoke= A0; int temp = 0; int lm35 = A1; void setup() { myservo.attach(3); pinMode(buzz,OUTPUT); pinMode(smoke,INPUT); pinMode(lm35,INPUT); Serial.begin(9600); } Microcontroller (Arduino UNO) Get info./values fromgas sensor Get info./values fromtemp. sensor Compere values according to condition/Code Operatethe buzzer and servo
  • 12. void loop() { temp = analogRead(lm35); int celsius = temp/2 - 5; Serial.println(celsius); gas = analogRead(smoke); Serial.println(gas); if(celsius>40 || gas>190) { if(celsius>45 || gas>250) { digitalWrite(buzz,HIGH); delay(200); digitalWrite(buzz,LOW); delay(200); int pos = 180; myservo.write(pos); delay(5); } else { int pos = 0; myservo.write(pos); delay(5); digitalWrite(buzz,HIGH); delay(800); digitalWrite(buzz,LOW); delay(800); } }
  • 13. else { digitalWrite(buzz,LOW); delay(1000); } } Troubleshooting : 1. When we connect both the sensors with Arduino 5V and GND in parallel, our LM-35 was not responding as it was responding individually(correctly) without the MQ-2 gas sensor, dueto currentshortagein it’s branch. For solving the problemwe used 7805 regulator IC. 2. In different environmentwe need to calibrate the MQ-2 gas sensor separately either by adjusting the value of it’s POT or change the rangeof it’s value to operate in the CODE. This is becauseconcentration of gases it sense, are not same in every place or environment; so it gives values of different ranges in different places. 3. We also faces difficulties calibrating the LM-35 to show it’s reading in Celsius scale. Application: 1. This projectcan be used commercially as a security purposedevice that will detect fire and gas leakage in our kitchen or factory, mall, museum, hotels, restaurants, laboratory etc. 2. In many home in our city there occur accident due to gas leakage in the kitchen, this projectcan be used to minimize this occurrence. 3. On Every Garments Factory, there is a chance of accident for the occurrence of fire. That is why this device is necessary to use.
  • 14. Discussion: Though smokedetection system is quite a simple projectbut it has immense importance and necessity in our practical life. We programmed this device that is implemented on the Arduino-Uno (ATmega328p) and the value of the concentration of the smokeis given high so that normalsmoking gas will not be the reason of the device alarm. We can also add somefurther improvement in this project. We are planning to use the dc water pump without servo directly with the Arduino for more reliable and fastresponse. And also we want to add a GSM module here for sending sms to the owner when smoke is detected. Itwill be beneficial when no one at home or at a vacant place.