Wish List 0

Mq2 Flammable Gas And Smoke Module

Rs. 69.00 Rs. 80.00

MQ2 Gas Sensor is useful for fuel leakage detecting(in domestic and enterprise). It can locate LPG, i-butane, methane, alcohol, Hydrogen, smoke and so forth. Based on its rapid response time. Measurements may be taken as soon as possible. Also the sensitivity can be adjusted via the potentiometer. 

MQ2 gasoline Sensor can  detect  fuel concentrations  everywhere  from  200  to  10000ppm.  MQ2 sensor  may be very sensitive to Propane, Hydrogen, methane and LPG. 

The MQ collection of fuel sensors use a small heater inside with an electro-chemical sensor. They are sensitive for more than a few gasses and are used indoors at room temperature. 

The  touchy  cloth  of  MQ2 Gas sensor is  SnO2, which  has  decrease  conductivity  in  smooth  air. When  the goal gasoline exist, the sensor’s conductivity is better along with the fuel awareness growing.  MQ2 sensor  could  be  used  to  hit upon  unique flamable  gases  specifically  Methane.  It  is  very  low cost and suitable for unique utility. This sensor may be used to make wi-fi Gas leak detector in home security machine.

Features:-
High sensitivity to Propane, smoke, Hydrogen, LPG, CO, alcohol, Smoke.

Fast response time <10s

High sensitivity

Stable and long life


SPECIFICATIONS:

-Supply Voltage:5V

-Sensitive to H2, LPG, CH4, CO, Alcohol, Smoke or Propane

-Analog and Digital Output

-Digital Out is High or Low based on a adjustable preset threshold.

OVERVIEW:

-High sensitivity to Propane, smoke, Hydrogen, LPG, CO, alcohol, Smoke.

-Fast response time <10s

-High sensitivity

-Stable and long life

PACKAGE INCLUDES:

1 PCS x Mq 2 Smoke Lpg Butane Hydrogen Gas Module


/*******

//SOURCE CODE TAKEN FROM BELOW LINK

//https://create.arduino.cc/projecthub/Aritro/smoke-detection-using-mq-2-gas-sensor-79c54a

 All the resources for this project:

 https://www.hackster.io/Aritro


*******/


int redLed = 12;

int greenLed = 11;

int buzzer = 10;

int smokeA0 = A5;

// Your threshold value

int sensorThres = 400;


void setup() {

  pinMode(redLed, OUTPUT);

  pinMode(greenLed, OUTPUT);

  pinMode(buzzer, OUTPUT);

  pinMode(smokeA0, INPUT);

  Serial.begin(9600);

}


void loop() {

  int analogSensor = analogRead(smokeA0);


  Serial.print("Pin A0: ");

  Serial.println(analogSensor);

  // Checks if it has reached the threshold value

  if (analogSensor > sensorThres)

  {

    digitalWrite(redLed, HIGH);

    digitalWrite(greenLed, LOW);

    tone(buzzer, 1000, 200);

  }

  else

  {

    digitalWrite(redLed, LOW);

    digitalWrite(greenLed, HIGH);

    noTone(buzzer);

  }

  delay(100);

}

15 days 

Write a review

Please login or register to review