MQ-135 Air quality and hazardous gas detection sensor

https://www.mrsparkz.co.za/web/image/product.template/1297/image_1920?unique=8c54c54

96.93 96.93 ZAR 96.93

84.29

Not Available For Sale

(0.00 / Unit(s))

This combination does not exist.

Sensors Module

Terms and Conditions
30-day money-back guarantee
Shipping: 2-3 Business Days

MQ-135 Air quality and hazardous gas detection sensor alarm module.

1. Size: 32mm X22mm X30mm length * width * height

2. The main chip: LM393, MQ135 gas sensing probe

3. Operating voltage: DC 5V

Features:

1. Signal output indicator instructions;

2. Dual signal output

3. TTL output valid signal is low; (Output low signal light, which can be accessed microcontroller IO port)

4. Analog output with increasing concentration, the higher the concentration, the higher the voltage;

5. Sulfide, benzene Department of steam, smoke and other harmful gasses with high sensitivity;

6. Has a long life and reliable stability;

7. Rapid response recovery characteristics;

Applications:

A hazardous gas detection apparatus for the family, the environment, suitable for ammonia, aromatic compounds, sulfur, benzene vapor, smoke and other gasses harmful gas detection, gas-sensitive element test concentration range: 10 to 1000ppm

Example code:

int SensorValue;

void  setup ()
{
  Serial . begin (9600);      // sets the serial port to 9600
}

void  loop ()
{
  SensorValue = analogRead (0);       // Read analog input pin 0 
  Serial.println (SensorValue, DEC );  // Prints the value read
   delay (100);                        // Wait 100ms for next reading 
}