Wish List 0

Mq135 Air Quality Gas Detector Sensor

Rs. 88.00 Rs. 99.00

  • Brand: https://www.hwsensor.com/
  • Product Code: SEN-GAS
  • SKU - SE-2323
  • Availability: 2-3 Days
  • Price in reward points: 1
  • For Bulk Order 9962060070
    Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered

The MQ 135 Air Quality Detector Sensor Module For Arduino has lower conductivity in clean air. When the target combustible gas exists, the conductivity of the sensor is higher along with the gas concentration rising.


Convert change of conductivity to the corresponding output signal of gas concentration. The MQ135 gas sensor has a high sensitivity to Ammonia, Sulphide, and Benzene steam, also sensitive to smoke and other harmful gases.

It is with low cost and suitable for different applications such as harmful gases/smoke detection.



SPECIFICATIONS
IC Chip                 MQ-135
Operating Voltage(VDC)  5
Detecting Range 100ppm to 1000ppm

OVERVIEW:

-Sensitivity to Ammonia, Sulphide and Benzene steam

-Sensitive for benzene, alcohol, smoke

-Fast response and recovery

-Adjustable sensitivity

-Signal output indicator

-Output voltage boosts along with the concentration of the measured gases increases.


PACKAGE INCLUDES:

1 PCS x Mq 135 Air Quality Gas Detector Sensor


//SOURCE CODE TAKEN FROM BELOW LINK

//https://create.arduino.cc/projecthub/andrew85/mq-4-natural-gas-sensor-experiment-based-on-arduino-f17bec

intpinRedLed = 11;

intpinGreenLed = 8;

intpinSensor = A5;

intTHRESHOLD = 250;

voidsetup() {

pinMode(pinRedLed, OUTPUT);

pinMode(pinGreenLed, OUTPUT);

pinMode(pinSensor, INPUT);

Serial.begin(9600);

}

voidloop() {

int analogValue = analogRead(pinSensor);

Serial.println("Val: " +analogValue);

digitalWrite(pinGreenLed, HIGH);

if (analogValue >= THRESHOLD) {

digitalWrite(pinGreenLed, LOW);

digitalWrite(pinRedLed, HIGH);

}

else {

digitalWrite(pinRedLed, LOW);

}

delay(5000);

}

15 days 

Write a review

Please login or register to review