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

Somke detector project presentation
Somke detector project presentationSomke detector project presentation
Somke detector project presentation
Rija Fatima
 
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
PETER ASIGRI
 

Mais procurados (20)

IoT home automation project
IoT home automation projectIoT home automation project
IoT home automation project
 
project report on fire alarm
project report on fire alarmproject report on fire alarm
project report on fire alarm
 
Gas Leakage Detection Based on IOT
Gas Leakage Detection Based on IOTGas Leakage Detection Based on IOT
Gas Leakage Detection Based on IOT
 
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
 
Presentation on home automation
Presentation on home automationPresentation on home automation
Presentation on home automation
 
Gas leakage detection system
Gas leakage detection systemGas leakage detection system
Gas leakage detection system
 
Voice Control Home Automation
Voice Control Home AutomationVoice Control Home Automation
Voice Control Home Automation
 
smart street light ppt
smart street light pptsmart street light ppt
smart street light ppt
 
Somke detector project presentation
Somke detector project presentationSomke detector project presentation
Somke detector project presentation
 
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
 
Home security system
Home security system Home security system
Home security system
 
Presentation on IoT Based Home Automation using android & NodeMCU
Presentation on IoT Based Home Automation using android & NodeMCUPresentation on IoT Based Home Automation using android & NodeMCU
Presentation on IoT Based Home Automation using android & NodeMCU
 
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
 
Iot based fire alarm system
Iot based fire alarm systemIot based fire alarm system
Iot based fire alarm system
 
fire detection system
fire detection systemfire detection system
fire detection system
 
Automatic fire detector
Automatic fire detectorAutomatic fire detector
Automatic fire detector
 
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
 
Smart street lighting control system project PPT
Smart street lighting control system project PPT Smart street lighting control system project PPT
Smart street lighting control system project PPT
 
Smart door lock
Smart door lockSmart door lock
Smart door lock
 
TEMPERATURE BASED FAN SPEED CONTROLLER
TEMPERATURE  BASED  FAN  SPEED  CONTROLLERTEMPERATURE  BASED  FAN  SPEED  CONTROLLER
TEMPERATURE BASED FAN SPEED CONTROLLER
 

Destaque

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

Semelhante a Smoke Detection System

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
 

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 Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝
Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝
Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
CHEAP Call Girls in Hauz Quazi (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Hauz Quazi  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Hauz Quazi  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Hauz Quazi (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Lucknow 💋 Call Girls Adil Nagar | ₹,9500 Pay Cash 8923113531 Free Home Delive...
Lucknow 💋 Call Girls Adil Nagar | ₹,9500 Pay Cash 8923113531 Free Home Delive...Lucknow 💋 Call Girls Adil Nagar | ₹,9500 Pay Cash 8923113531 Free Home Delive...
Lucknow 💋 Call Girls Adil Nagar | ₹,9500 Pay Cash 8923113531 Free Home Delive...
anilsa9823
 
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
amitlee9823
 
CALL GIRLS IN Saket 83778-77756 | Escort Service In DELHI NcR
CALL GIRLS IN Saket 83778-77756 | Escort Service In DELHI NcRCALL GIRLS IN Saket 83778-77756 | Escort Service In DELHI NcR
CALL GIRLS IN Saket 83778-77756 | Escort Service In DELHI NcR
dollysharma2066
 
young call girls in Sainik Farm 🔝 9953056974 🔝 Delhi escort Service
young call girls in Sainik Farm 🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Sainik Farm 🔝 9953056974 🔝 Delhi escort Service
young call girls in Sainik Farm 🔝 9953056974 🔝 Delhi escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
🔝 9953056974🔝 Delhi Call Girls in Ajmeri Gate
🔝 9953056974🔝 Delhi Call Girls in Ajmeri Gate🔝 9953056974🔝 Delhi Call Girls in Ajmeri Gate
🔝 9953056974🔝 Delhi Call Girls in Ajmeri Gate
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 

Último (20)

Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝
Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝
Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝
 
Book Paid Lohegaon Call Girls Pune 8250192130Low Budget Full Independent High...
Book Paid Lohegaon Call Girls Pune 8250192130Low Budget Full Independent High...Book Paid Lohegaon Call Girls Pune 8250192130Low Budget Full Independent High...
Book Paid Lohegaon Call Girls Pune 8250192130Low Budget Full Independent High...
 
Call Girls Chikhali Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Chikhali Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Chikhali Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Chikhali Call Me 7737669865 Budget Friendly No Advance Booking
 
VVIP Pune Call Girls Karve Nagar (7001035870) Pune Escorts Nearby with Comple...
VVIP Pune Call Girls Karve Nagar (7001035870) Pune Escorts Nearby with Comple...VVIP Pune Call Girls Karve Nagar (7001035870) Pune Escorts Nearby with Comple...
VVIP Pune Call Girls Karve Nagar (7001035870) Pune Escorts Nearby with Comple...
 
NO1 Verified Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi A...
NO1 Verified Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi A...NO1 Verified Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi A...
NO1 Verified Amil Baba In Karachi Kala Jadu In Karachi Amil baba In Karachi A...
 
CHEAP Call Girls in Hauz Quazi (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Hauz Quazi  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Hauz Quazi  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Hauz Quazi (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Lucknow 💋 Call Girls Adil Nagar | ₹,9500 Pay Cash 8923113531 Free Home Delive...
Lucknow 💋 Call Girls Adil Nagar | ₹,9500 Pay Cash 8923113531 Free Home Delive...Lucknow 💋 Call Girls Adil Nagar | ₹,9500 Pay Cash 8923113531 Free Home Delive...
Lucknow 💋 Call Girls Adil Nagar | ₹,9500 Pay Cash 8923113531 Free Home Delive...
 
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
 
Book Sex Workers Available Pune Call Girls Yerwada 6297143586 Call Hot India...
Book Sex Workers Available Pune Call Girls Yerwada  6297143586 Call Hot India...Book Sex Workers Available Pune Call Girls Yerwada  6297143586 Call Hot India...
Book Sex Workers Available Pune Call Girls Yerwada 6297143586 Call Hot India...
 
CALL GIRLS IN Saket 83778-77756 | Escort Service In DELHI NcR
CALL GIRLS IN Saket 83778-77756 | Escort Service In DELHI NcRCALL GIRLS IN Saket 83778-77756 | Escort Service In DELHI NcR
CALL GIRLS IN Saket 83778-77756 | Escort Service In DELHI NcR
 
Top Rated Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
 
young call girls in Sainik Farm 🔝 9953056974 🔝 Delhi escort Service
young call girls in Sainik Farm 🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Sainik Farm 🔝 9953056974 🔝 Delhi escort Service
young call girls in Sainik Farm 🔝 9953056974 🔝 Delhi escort Service
 
Call Girls Kothrud Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Kothrud Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Kothrud Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Kothrud Call Me 7737669865 Budget Friendly No Advance Booking
 
@Delhi ! CAll GIRLS IN Defence Colony 🦋 9999965857 🤩 Dwarka Call Girls
@Delhi ! CAll GIRLS IN Defence Colony 🦋 9999965857 🤩 Dwarka Call Girls@Delhi ! CAll GIRLS IN Defence Colony 🦋 9999965857 🤩 Dwarka Call Girls
@Delhi ! CAll GIRLS IN Defence Colony 🦋 9999965857 🤩 Dwarka Call Girls
 
High Profile Call Girls In Andheri 7738631006 Call girls in mumbai Mumbai ...
High Profile Call Girls In Andheri 7738631006 Call girls in mumbai  Mumbai ...High Profile Call Girls In Andheri 7738631006 Call girls in mumbai  Mumbai ...
High Profile Call Girls In Andheri 7738631006 Call girls in mumbai Mumbai ...
 
Low Rate Call Girls Nashik Vedika 7001305949 Independent Escort Service Nashik
Low Rate Call Girls Nashik Vedika 7001305949 Independent Escort Service NashikLow Rate Call Girls Nashik Vedika 7001305949 Independent Escort Service Nashik
Low Rate Call Girls Nashik Vedika 7001305949 Independent Escort Service Nashik
 
Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...
Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...
Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...
 
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
 
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...
 
🔝 9953056974🔝 Delhi Call Girls in Ajmeri Gate
🔝 9953056974🔝 Delhi Call Girls in Ajmeri Gate🔝 9953056974🔝 Delhi Call Girls in Ajmeri Gate
🔝 9953056974🔝 Delhi Call Girls in Ajmeri Gate
 

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.