ESP8266 - Gas Sensor

This tutorial instructs you how to use ESP8266 and the MQ2 gas sensor to assess the quality of the air by measuring the levels of gases like LPG, smoke, alcohol, propane, hydrogen, methane, and carbon monoxide. In detail, we will learn:

Hardware Preparation

1×ESP8266 NodeMCU
1×Micro USB Cable
1×MQ2 Gas Sensor
1×Jumper Wires
1×(Optional) 5V Power Adapter for ESP8266
1×(Optional) ESP8266 Screw Terminal Adapter

Or you can buy the following sensor kit:

1×DIYables Sensor Kit 30 types, 69 units
Disclosure: Some of the links provided in this section are Amazon affiliate links. We may receive a commission for any purchases made through these links at no additional cost to you. We appreciate your support.

Overview of MQ2 Gas Sensor

The MQ2 gas sensor is a useful device that can detect the levels of various gases, including LPG, smoke, alcohol, propane, hydrogen, methane, and carbon monoxide, in the surrounding environment. It offers two output options: a digital output pin and an analog output pin.

It's important to note that the MQ2 gas sensor doesn't provide separate information about each gas. Instead, it gives us a general indication of the gas combination or the presence of gases as a whole.

By using the MQ2 sensor, we can determine if there is a gas leak or if the air quality is poor. This information is valuable as it allows us to take appropriate measures to ensure our safety, such as activating an alarm or turning on ventilation systems.

Pinout

The MQ2 gas sensor consists of four pins that serve different functions:

  • VCC pin: It should be connected to the power supply's positive terminal (5V) to provide the necessary power to the sensor.
  • GND pin: It should be connected to the power supply's negative terminal (0V) to complete the electrical circuit.
  • DO pin: This is a digital output pin that indicates the presence of flammable gases. When the gas concentration is detected, the output is set to LOW, and when there is no gas detected, the output is set to HIGH. The threshold for gas concentration detection can be adjusted using a potentiometer that is built into the sensor.
  • AO pin: This is an analog output pin that generates a voltage signal proportional to the gas concentration. When the gas concentration increases, the voltage output also increases, and when the gas concentration decreases, the voltage output decreases accordingly.
MQ2 Gas Sensor Pinout

Additionally, the MQ2 gas sensor includes two LED indicators:

  • PWR-LED indicator: This LED serves as a power indicator, indicating whether the sensor is receiving power. When the sensor is properly powered, the PWR-LED is turned on, providing visual confirmation of the sensor's operational state.
  • DO-LED indicator: This LED is directly linked to the DO pin of the sensor. It indicates the presence of gas concentration based on the value received from the DO pin. When the gas concentration is detected and the DO pin is set to LOW, the DO-LED turns on. Conversely, when there is no gas concentration detected and the DO pin is set to HIGH, the DO-LED turns off.

How It Works

Regarding the DO pin:

  • The MQ2 module includes a built-in potentiometer for adjusting the sensitivity or threshold of gas concentration.
  • When the gas concentration in the surrounding environment exceeds the set threshold, the output pin of the sensor becomes LOW, and the DO-LED turns on.
  • Conversely, when the gas concentration falls below the threshold, the output pin becomes HIGH, and the DO-LED turns off.

Regarding the AO pin:

  • The voltage on the AO pin increases as the gas concentration rises.
  • Conversely, as the gas concentration decreases, the voltage on the AO pin decreases accordingly.

It's important to note that the potentiometer adjustment does not affect the value on the AO pin.

The MQ2 Sensor Warm-up

The MQ2 gas sensor requires a warming-up period before it can be used effectively. Here's what you need to know:

  • When using the sensor for the first time after a long period of storage (around a month or more), it is necessary to warm it up for 24-48 hours. This ensures that the sensor operates accurately.
  • If the sensor has been recently used, the warming-up time is much shorter, typically taking only 5-10 minutes. During this warm-up period, it is normal for the sensor to initially provide higher readings. However, these readings will gradually decrease until the sensor stabilizes.

To warm up the MQ2 sensor, simply connect its VCC and GND pins to a power supply or to the VCC and GND pins of an ESP8266. Allow the sensor to remain connected for the specified warm-up period.

Wiring Diagram

Since the MQ2 gas sensor module has two outputs, you can choose to use one or both of them, depending on what you need.

  • The wiring diagram between ESP8266 and the MQ2 gas sensor when using DO only.
The wiring diagram between ESP8266 NodeMCU and MQ2 gas sensor

This image is created using Fritzing. Click to enlarge image

See more in ESP8266's pinout and how to supply power to the ESP8266 and other components.

  • The wiring diagram between ESP8266 and the MQ2 gas sensor when using AO only.
The wiring diagram between ESP8266 NodeMCU and air quality

This image is created using Fritzing. Click to enlarge image

  • The wiring diagram between ESP8266 and the MQ2 gas sensor when using both AO an DO.
The wiring diagram between ESP8266 NodeMCU and smoke sensor

This image is created using Fritzing. Click to enlarge image

ESP8266 Code - Read value from DO pin

/* * This ESP8266 NodeMCU code was developed by newbiely.com * * This ESP8266 NodeMCU code is made available for public use without any restriction * * For comprehensive instructions and wiring diagrams, please visit: * https://newbiely.com/tutorials/esp8266/esp8266-gas-sensor */ #define DO_PIN D7 // esp8266's pin d7 connected to DO pin of the MQ2 sensor void setup() { // Initialize the Serial to communicate with the Serial Monitor. Serial.begin(9600); // initialize the esp8266's pin as an input pinMode(DO_PIN, INPUT); Serial.println("Warming up the MQ2 sensor"); delay(20000); // wait for the MQ2 to warm up } void loop() { int gasState = digitalRead(DO_PIN); if (gasState == HIGH) Serial.println("The gas is NOT present"); else Serial.println("The gas is present"); }

Detailed Instructions

To get started with ESP8266 on Arduino IDE, follow these steps:

  • Check out the how to setup environment for ESP8266 on Arduino IDE tutorial if this is your first time using ESP8266.
  • Wire the components as shown in the diagram.
  • Connect the ESP8266 board to your computer using a USB cable.
  • Open Arduino IDE on your computer.
  • Choose the correct ESP8266 board, such as (e.g. NodeMCU 1.0 (ESP-12E Module)), and its respective COM port.
  • Copy the above code and open with Arduino IDE
  • Click Upload button on Arduino IDE to upload code to ESP8266
  • Place the MQ2 gas sensor near the smoke/gas you want to detect
  • Check out the result on the Serial Monitor.
COM6
Send
The gas is NOT present The gas is NOT present The gas is NOT present The gas is NOT present The gas is NOT present The gas is present The gas is present The gas is present The gas is present The gas is present
Autoscroll Show timestamp
Clear output
9600 baud  
Newline  

Please keep in mind that if you notice the LED status remaining on constantly or off, you can adjust the potentiometer to fine-tune the sensitivity of the sensor.

ESP8266 Code - Read value from AO pin

/* * This ESP8266 NodeMCU code was developed by newbiely.com * * This ESP8266 NodeMCU code is made available for public use without any restriction * * For comprehensive instructions and wiring diagrams, please visit: * https://newbiely.com/tutorials/esp8266/esp8266-gas-sensor */ #define AO_PIN A0 // esp8266's pin connected to AO pin of the MQ2 sensor void setup() { // Initialize the Serial to communicate with the Serial Monitor. Serial.begin(9600); Serial.println("Warming up the MQ2 sensor"); delay(20000); // wait for the MQ2 to warm up } void loop() { int gasValue = analogRead(AO_PIN); Serial.print("MQ2 sensor AO value: "); Serial.println(gasValue); }

Detailed Instructions

  • Copy the above code and open with Arduino IDE
  • Click Upload button on Arduino IDE to upload code to ESP8266
  • Place the MQ2 gas sensor near the smoke/gas you want to detect
  • Check out the result on the Serial Monitor.
COM6
Send
MQ2 sensor AO value: 135 MQ2 sensor AO value: 136 MQ2 sensor AO value: 136 MQ2 sensor AO value: 573 MQ2 sensor AO value: 674 MQ2 sensor AO value: 938 MQ2 sensor AO value: 954 MQ2 sensor AO value: 1000 MQ2 sensor AO value: 1002 MQ2 sensor AO value: 1014 MQ2 sensor AO value: 1017
Autoscroll Show timestamp
Clear output
9600 baud  
Newline  

From values read from DO or AO, you can infer the air quality based on your standard, or trigger an alarm or turn on ventilation systems.

Video Tutorial

※ OUR MESSAGES

  • As freelancers, We are AVAILABLE for HIRE. See how to outsource your project to us
  • Please feel free to share the link of this tutorial. However, Please do not use our content on any other websites. We invested a lot of effort and time to create the content, please respect our work!