Wish List 0

Mq2 Smoke Lpg Butane Hydrogen Gas Sensor

Rs. 76.00 Rs. 86.00

The MQ-2 Smoke LPG Butane Hydrogen Gas Sensor Detector Module is useful for fuel leakage detection (home and enterprise). It is appropriate for detecting H2, LPG, CH4, CO, Alcohol, Smoke or Propane. Due to its high sensitivity and fast reaction time, measurement may be taken as soon as possible. The sensitivity of the sensor can be adjusted through the potentiometer.


MQ-2 gasoline sensor using gas touchy fabric is to be clean air within the decrease conductivity of Tin oxide (SnO2). When the sensor when flammable gases are gift in the environment wherein the conductivity of the sensor with an increasing attention of combustible gasoline within the air increases.

Use a simple circuit to transform the adjustments in conductivity and output signal that corresponds to the concentration of the gasoline.

MQ-2 gasoline sensor higher sensitivity to liquefied petroleum fuel, propane, hydrogen, detection of fuel and different flamable vapors are perfect. This sensor can come across an expansion of flammable gasoline, is a low-fee sensor for plenty packages.

Features :
1. Good sensitivity to Combustible gas in a wide range
2. High sensitivity to LPG, Propane, and Hydrogen
3. Long life and low cost
4. Simple drive circuit
5. Can be used as a Digital or analog sensor
6. The Sensitivity of Digital pin can be varied using the potentiometer
7. Can be used to Measure or detect LPG, Alcohol, Propane, Hydrogen, CO and even methane.


SPECIFICATIONS
Operating Voltage(VDC)    5
Analog Output Voltage     0V to 5V
Digital Output Voltage    0V or 5V (TTL Logic)
Preheat Duration(sec)     20

OVERVIEW:

-Operating Voltage is +5V

-Can be used to Measure or detect LPG, Alcohol, Propane, Hydrogen, CO and even methane

-Can be used as a Digital or analog sensor

-The Sensitivity of Digital pin can be varied using the potentiometer

-Long life and low cost

-Simple drive circuit


PACKAGE INCLUDES:

1 PCS x Mq 2 Smoke Lpg Butane Hydrogen Gas Sensor


/*******

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