SlideShare uma empresa 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.

Mais conteúdo relacionado

Mais procurados

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
 
AUTONOMOUS LPG GAS SENSOR BOT USING ARDUINO ppt
AUTONOMOUS LPG GAS SENSOR BOT USING ARDUINO pptAUTONOMOUS LPG GAS SENSOR BOT USING ARDUINO ppt
AUTONOMOUS LPG GAS SENSOR BOT USING ARDUINO pptRavi Shankar
 
Implementation Of GSM Based Fire Alarm and Protection System
Implementation Of GSM Based Fire Alarm and Protection SystemImplementation Of GSM Based Fire Alarm and Protection System
Implementation Of GSM Based Fire Alarm and Protection SystemBUBT
 
Fire Alarm System Project
Fire Alarm System ProjectFire Alarm System Project
Fire Alarm System ProjectRinkuNahar
 
Alcohol sensing alert with engine locking project
Alcohol sensing alert with engine locking projectAlcohol sensing alert with engine locking project
Alcohol sensing alert with engine locking projecthemanth prudhvi jidugu
 
Gas leakage detection system
Gas leakage detection systemGas leakage detection system
Gas leakage detection systemAashiq Ahamed N
 
Arduino UNO Gas & Smoke Detection - Embedded Systems
Arduino UNO Gas & Smoke Detection - Embedded SystemsArduino UNO Gas & Smoke Detection - Embedded Systems
Arduino UNO Gas & Smoke Detection - Embedded SystemsImtiaze A.
 
ARDUINO BASED GAS LEAKAGE DETECTING ROBOT
ARDUINO BASED GAS LEAKAGE DETECTING ROBOT ARDUINO BASED GAS LEAKAGE DETECTING ROBOT
ARDUINO BASED GAS LEAKAGE DETECTING ROBOT Hari sankar
 
Temperature based fan speed control & monitoring using
Temperature based fan speed control & monitoring usingTemperature based fan speed control & monitoring using
Temperature based fan speed control & monitoring usingJagannath Dutta
 
Patient Health Monitoring System Using Arduino & ESP8266
Patient Health Monitoring System Using Arduino & ESP8266Patient Health Monitoring System Using Arduino & ESP8266
Patient Health Monitoring System Using Arduino & ESP8266Rishav Pandey
 
PIR sensors day
PIR sensors day PIR sensors day
PIR sensors day sivagamitec
 
Gas & smoke detector
Gas & smoke detectorGas & smoke detector
Gas & smoke detectorToushik Paul
 
SMART HOME AUTOMATION USING MOBILE APPLICATION
SMART HOME AUTOMATION USING MOBILE APPLICATIONSMART HOME AUTOMATION USING MOBILE APPLICATION
SMART HOME AUTOMATION USING MOBILE APPLICATIONEklavya Sharma
 
Fire fighting robot using arduino
Fire fighting robot using arduinoFire fighting robot using arduino
Fire fighting robot using arduinoNiranjan Kumar
 

Mais procurados (20)

LPG gas leekage dectection
LPG gas  leekage  dectectionLPG gas  leekage  dectection
LPG gas leekage dectection
 
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
 
AUTONOMOUS LPG GAS SENSOR BOT USING ARDUINO ppt
AUTONOMOUS LPG GAS SENSOR BOT USING ARDUINO pptAUTONOMOUS LPG GAS SENSOR BOT USING ARDUINO ppt
AUTONOMOUS LPG GAS SENSOR BOT USING ARDUINO ppt
 
Implementation Of GSM Based Fire Alarm and Protection System
Implementation Of GSM Based Fire Alarm and Protection SystemImplementation Of GSM Based Fire Alarm and Protection System
Implementation Of GSM Based Fire Alarm and Protection System
 
Fire Alarm System Project
Fire Alarm System ProjectFire Alarm System Project
Fire Alarm System Project
 
Gas Sensor MQ-2
Gas Sensor MQ-2Gas Sensor MQ-2
Gas Sensor MQ-2
 
Alcohol sensing alert with engine locking project
Alcohol sensing alert with engine locking projectAlcohol sensing alert with engine locking project
Alcohol sensing alert with engine locking project
 
Gas leakage detection system
Gas leakage detection systemGas leakage detection system
Gas leakage detection system
 
Arduino UNO Gas & Smoke Detection - Embedded Systems
Arduino UNO Gas & Smoke Detection - Embedded SystemsArduino UNO Gas & Smoke Detection - Embedded Systems
Arduino UNO Gas & Smoke Detection - Embedded Systems
 
ARDUINO BASED GAS LEAKAGE DETECTING ROBOT
ARDUINO BASED GAS LEAKAGE DETECTING ROBOT ARDUINO BASED GAS LEAKAGE DETECTING ROBOT
ARDUINO BASED GAS LEAKAGE DETECTING ROBOT
 
Temperature based fan speed control & monitoring using
Temperature based fan speed control & monitoring usingTemperature based fan speed control & monitoring using
Temperature based fan speed control & monitoring using
 
Patient Health Monitoring System Using Arduino & ESP8266
Patient Health Monitoring System Using Arduino & ESP8266Patient Health Monitoring System Using Arduino & ESP8266
Patient Health Monitoring System Using Arduino & ESP8266
 
PIR sensors day
PIR sensors day PIR sensors day
PIR sensors day
 
Gas & smoke detector
Gas & smoke detectorGas & smoke detector
Gas & smoke detector
 
Fire alarm system
Fire alarm systemFire alarm system
Fire alarm system
 
Smoke detector
Smoke detectorSmoke detector
Smoke detector
 
SMART HOME AUTOMATION USING MOBILE APPLICATION
SMART HOME AUTOMATION USING MOBILE APPLICATIONSMART HOME AUTOMATION USING MOBILE APPLICATION
SMART HOME AUTOMATION USING MOBILE APPLICATION
 
OBSTACLE AVOIDING CAR
OBSTACLE AVOIDING CAROBSTACLE AVOIDING CAR
OBSTACLE AVOIDING CAR
 
Fire alarm
Fire alarmFire alarm
Fire alarm
 
Fire fighting robot using arduino
Fire fighting robot using arduinoFire fighting robot using arduino
Fire fighting robot using arduino
 

Destaque

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
 
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
 

Destaque (11)

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
 
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
 
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
 

Semelhante a Smoke Detection System

Automatic gas detection system
Automatic  gas  detection  systemAutomatic  gas  detection  system
Automatic gas detection systemSayanSarkar55
 
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
 

Semelhante a Smoke Detection System (20)

Ic2414251429
Ic2414251429Ic2414251429
Ic2414251429
 
Automatic gas detection system
Automatic  gas  detection  systemAutomatic  gas  detection  system
Automatic gas 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 -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
 

Último

Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)amitlee9823
 
(👉Ridhima)👉VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...
(👉Ridhima)👉VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...(👉Ridhima)👉VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...
(👉Ridhima)👉VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...motiram463
 
Top Rated Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Call Girls in Nagpur High Profile
 
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Th...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Th...Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Th...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Th...Pooja Nehwal
 
Top Rated Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...
Top Rated  Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...Top Rated  Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...
Top Rated Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...Call Girls in Nagpur High Profile
 
Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...
Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...
Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...drmarathore
 
Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...
Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...
Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...amitlee9823
 
Deira Dubai Escorts +0561951007 Escort Service in Dubai by Dubai Escort Girls
Deira Dubai Escorts +0561951007 Escort Service in Dubai by Dubai Escort GirlsDeira Dubai Escorts +0561951007 Escort Service in Dubai by Dubai Escort Girls
Deira Dubai Escorts +0561951007 Escort Service in Dubai by Dubai Escort GirlsEscorts Call Girls
 
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证tufbav
 
Abortion Pill for sale in Riyadh ((+918761049707) Get Cytotec in Dammam
Abortion Pill for sale in Riyadh ((+918761049707) Get Cytotec in DammamAbortion Pill for sale in Riyadh ((+918761049707) Get Cytotec in Dammam
Abortion Pill for sale in Riyadh ((+918761049707) Get Cytotec in Dammamahmedjiabur940
 
Shikrapur Call Girls Most Awaited Fun 6297143586 High Profiles young Beautie...
Shikrapur Call Girls Most Awaited Fun  6297143586 High Profiles young Beautie...Shikrapur Call Girls Most Awaited Fun  6297143586 High Profiles young Beautie...
Shikrapur Call Girls Most Awaited Fun 6297143586 High Profiles young Beautie...tanu pandey
 
VVIP Pune Call Girls Gahunje WhatSapp Number 8005736733 With Elite Staff And ...
VVIP Pune Call Girls Gahunje WhatSapp Number 8005736733 With Elite Staff And ...VVIP Pune Call Girls Gahunje WhatSapp Number 8005736733 With Elite Staff And ...
VVIP Pune Call Girls Gahunje WhatSapp Number 8005736733 With Elite Staff And ...SUHANI PANDEY
 
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证ehyxf
 
HLH PPT.ppt very important topic to discuss
HLH PPT.ppt very important topic to discussHLH PPT.ppt very important topic to discuss
HLH PPT.ppt very important topic to discussDrMSajidNoor
 
➥🔝 7737669865 🔝▻ Muzaffarpur Call-girls in Women Seeking Men 🔝Muzaffarpur🔝 ...
➥🔝 7737669865 🔝▻ Muzaffarpur Call-girls in Women Seeking Men  🔝Muzaffarpur🔝  ...➥🔝 7737669865 🔝▻ Muzaffarpur Call-girls in Women Seeking Men  🔝Muzaffarpur🔝  ...
➥🔝 7737669865 🔝▻ Muzaffarpur Call-girls in Women Seeking Men 🔝Muzaffarpur🔝 ...amitlee9823
 
Just Call Vip call girls daman Escorts ☎️9352988975 Two shot with one girl (d...
Just Call Vip call girls daman Escorts ☎️9352988975 Two shot with one girl (d...Just Call Vip call girls daman Escorts ☎️9352988975 Two shot with one girl (d...
Just Call Vip call girls daman Escorts ☎️9352988975 Two shot with one girl (d...gajnagarg
 

Último (20)

Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Call Girls Chickpet ☎ 7737669865☎ Book Your One night Stand (Bangalore)
 
(👉Ridhima)👉VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...
(👉Ridhima)👉VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...(👉Ridhima)👉VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...
(👉Ridhima)👉VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...
 
Top Rated Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Ravet ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
 
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Th...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Th...Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Th...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Th...
 
CHEAP Call Girls in Ashok Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Ashok Nagar  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Ashok Nagar  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Ashok Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Top Rated Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...
Top Rated  Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...Top Rated  Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...
Top Rated Pune Call Girls Shirwal ⟟ 6297143586 ⟟ Call Me For Genuine Sex Ser...
 
Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...
Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...
Abort pregnancy in research centre+966_505195917 abortion pills in Kuwait cyt...
 
Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...
Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...
Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...
 
Deira Dubai Escorts +0561951007 Escort Service in Dubai by Dubai Escort Girls
Deira Dubai Escorts +0561951007 Escort Service in Dubai by Dubai Escort GirlsDeira Dubai Escorts +0561951007 Escort Service in Dubai by Dubai Escort Girls
Deira Dubai Escorts +0561951007 Escort Service in Dubai by Dubai Escort Girls
 
CHEAP Call Girls in Vinay Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Vinay Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Vinay Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Vinay Nagar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
CHEAP Call Girls in Mayapuri (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Mayapuri  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Mayapuri  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Mayapuri (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证
 
Abortion Pill for sale in Riyadh ((+918761049707) Get Cytotec in Dammam
Abortion Pill for sale in Riyadh ((+918761049707) Get Cytotec in DammamAbortion Pill for sale in Riyadh ((+918761049707) Get Cytotec in Dammam
Abortion Pill for sale in Riyadh ((+918761049707) Get Cytotec in Dammam
 
(ISHITA) Call Girls Service Aurangabad Call Now 8617697112 Aurangabad Escorts...
(ISHITA) Call Girls Service Aurangabad Call Now 8617697112 Aurangabad Escorts...(ISHITA) Call Girls Service Aurangabad Call Now 8617697112 Aurangabad Escorts...
(ISHITA) Call Girls Service Aurangabad Call Now 8617697112 Aurangabad Escorts...
 
Shikrapur Call Girls Most Awaited Fun 6297143586 High Profiles young Beautie...
Shikrapur Call Girls Most Awaited Fun  6297143586 High Profiles young Beautie...Shikrapur Call Girls Most Awaited Fun  6297143586 High Profiles young Beautie...
Shikrapur Call Girls Most Awaited Fun 6297143586 High Profiles young Beautie...
 
VVIP Pune Call Girls Gahunje WhatSapp Number 8005736733 With Elite Staff And ...
VVIP Pune Call Girls Gahunje WhatSapp Number 8005736733 With Elite Staff And ...VVIP Pune Call Girls Gahunje WhatSapp Number 8005736733 With Elite Staff And ...
VVIP Pune Call Girls Gahunje WhatSapp Number 8005736733 With Elite Staff And ...
 
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
 
HLH PPT.ppt very important topic to discuss
HLH PPT.ppt very important topic to discussHLH PPT.ppt very important topic to discuss
HLH PPT.ppt very important topic to discuss
 
➥🔝 7737669865 🔝▻ Muzaffarpur Call-girls in Women Seeking Men 🔝Muzaffarpur🔝 ...
➥🔝 7737669865 🔝▻ Muzaffarpur Call-girls in Women Seeking Men  🔝Muzaffarpur🔝  ...➥🔝 7737669865 🔝▻ Muzaffarpur Call-girls in Women Seeking Men  🔝Muzaffarpur🔝  ...
➥🔝 7737669865 🔝▻ Muzaffarpur Call-girls in Women Seeking Men 🔝Muzaffarpur🔝 ...
 
Just Call Vip call girls daman Escorts ☎️9352988975 Two shot with one girl (d...
Just Call Vip call girls daman Escorts ☎️9352988975 Two shot with one girl (d...Just Call Vip call girls daman Escorts ☎️9352988975 Two shot with one girl (d...
Just Call Vip call girls daman Escorts ☎️9352988975 Two shot with one girl (d...
 

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.