WE ARE CLOSED FOR GOOD FRIDAY, Mar 29, 2024. Enjoy Easter Holiday!

MQ-2 Smoke Sensor Guide

Posted by Kelly M on

The MQ-2 Smoke Sensor is a very popular module for detecting smoke and to flammable gases like LPG, Butane, Propane, Methane, Alcohol, and hydrogen. It outputs different voltage accordingly to the smoke/gas level that exists in the atmosphere. The sensor outputs a voltage that is proportional to the concentration of smoke/gas. In other words, the greater the gas concentration, the greater the output voltage. The lower the gas concentration, the lower the output voltage. 

The smoke sensor has a built-in potentiometer that allows you to adjust the sensor sensitivity according to how accurate you want to detect gas. It has both digital and analog pins that can read with an analog input or a digital output that can be read with a digital input from an Arduino Board. 

In this article, we will talk about how to wire and set up the module for operation with an Arduino Board.  

Wiring 

Most MQ-2 modules operate at 5V and gives out both analog and digital outputs. For this project, we will be using MQ-2 Smoke Sensor, the one we carry in our shop. This module consists of 4 pins: VCC, A0, D0 and GND.

Parts

Wiring Guide

Connect the pins with male to male jumper wires 

 

  • MQ-2 VCC -- Arduino 5V pin 
  • MQ-2 A0 -- Arduino A0 pin 
  • MQ-2 D0 -- Arduino D2 pin 
  • MQ-2 GND -- Arduino GND pin

Programming 

Before we set a threshold value, we need to know what the numbers are like before the sensor detects any smoke. Follow the following code for the testing. As you have found the threshold value by having smoke near the sensor, set that certain value as the threshold on the code. If you want to skip the steps and jump to the Full Code

Step 1: Define connection pin.

#define sensor A0 

Step 2: Create variables for storing the sensor's state and the threshold value that you have found from putting the sensor near the smoke. (the value might vary depending on your sensor) 

int value = 0;
int threshold = 100;

Step 3: Set up serial communication between Arduino and MQ-2 sensor and set the sensor as an input. 

void setup(){
  Serial.begin(9600);
  pinMode(sensor, INPUT);
}

Step 4: Read sensor's state input

void loop(){
  value = analogRead(sensor);

Step 5: if the value is greater than the threshold value, serial monitor will display "smoke detected". Otherwise, it will display "all clear". 

  if (value > threshold){
    Serial.println("Smoke Detected...");
  }
  else{
    Serial.println("All Clear..");
  }
  delay(1000);
}

Full Code

#define sensor A0 

int value = 0;
int threshold = 100;

void setup(){
  Serial.begin(9600);
  pinMode(sensor, INPUT);
}

void loop(){
  value = analogRead(sensor);
  // to find the threshold, comment the following block out
  /* 
   *  Serial.println(value);
   */
  if (value > threshold){
    Serial.println("Smoke Detected...");
  }
  else{
    Serial.println("All Clear..");
  }
  delay(1000);
}

Output

When there is smoke

 

When there is no smoke 


Share this post



← Older Post Newer Post →


Leave a comment

Please note, comments must be approved before they are published.