Your cart is currently empty!
Get Extra 5% off (up to ₹100) with UPI/Debit Card! The discounted price is: ₹180.50 (Original price: ₹190.00)
The MQ-135 Air Quality/Gas Detector Sensor Module is a widely used sensor module designed to detect a range of air pollutants and gases. Here’s a comprehensive overview of the MQ-135 sensor module: Purpose: The MQ-135 sensor module is designed to detect a variety of gases and air pollutants, making it suitable for air quality monitoring and environmental…
The MQ-135 Air Quality/Gas Detector Sensor Module is a widely used sensor module designed to detect a range of air pollutants and gases.
Purpose: The MQ-135 sensor module is designed to detect a variety of gases and air pollutants, making it suitable for air quality monitoring and environmental sensing applications.
Sensitivity: It exhibits varying sensitivity to gases like ammonia, nitrogen dioxide, benzene, carbon monoxide, and other harmful substances.
Principle: The sensor uses a semiconductor gas sensor where the resistance of the sensing material changes based on the concentration of gases in the air.
Multi-Gas Detection: The MQ-135 module is capable of detecting various gases and pollutants, offering a wide range of applications.
Analog Output: The module typically provides an analog voltage output that can be correlated to the concentration of the detected gas.
Versatility: Due to its broad sensitivity to multiple gases, it’s suitable for diverse air quality monitoring projects.
Affordability: The MQ-135 sensor module is cost-effective, making it a popular choice for hobbyists and environmental monitoring enthusiasts.
Indoor Air Quality: The MQ-4 sensor is widely used to detect methane leaks in households, industries, and commercial spaces. It’s particularly useful in preventing potential explosions due to gas leaks.
Outdoor Air Quality: Deployed in outdoor environments to track pollution levels and understand the overall air quality.
Environmental Research: Employed in research projects to gather data on various gases and their concentrations.
Personal Projects: Popular among makers and DIY enthusiasts for building air quality monitoring devices.
Powering the Sensor: The sensor usually requires a 5V DC power supply.
Calibration: Calibration might be necessary for accurate readings. This involves exposing the sensor to clean air to establish a baseline resistance value.
Reading Values: The analog output voltage from the MQ-135 module can be connected to an analog pin on a microcontroller (e.g., Arduino) to read the gas concentration. The specific gas being detected can be inferred from calibration data.
Warm-Up Time: The sensor might require some time to stabilize before providing accurate readings.
Cross-Sensitivity: The MQ-135 sensor can exhibit cross-sensitivity to various gases, which might affect its accuracy in mixed gas environments.
Environmental Factors: Factors like temperature, humidity, and the presence of other gases can influence its performance. When integrating the MQ-135 Air Quality/Gas Detector Sensor Module into a project, proper calibration and accounting for potential cross-sensitivity are crucial for obtaining accurate and meaningful air quality readings.
#include <LiquidCrystal.h> int sensorValue; const int rs = 12, en = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2; LiquidCrystal lcd(rs, en, d4, d5, d6, d7); void setup(){ lcd.begin(16, 2); Serial.begin(9600); // sets the serial port to 9600 } //https://kitsguru.myshopify.com/products/mq135-mq-135-air-quality-sensor-hazardous-gas-detection-module void loop(){sensorValue = analogRead(0); // read analog input pin 0 Serial.print("AirQua="); Serial.print(sensorValue, DEC); // prints the value read Serial.println(" PPM"); lcd.setCursor(0,0); lcd.print("ArQ="); lcd.print(sensorValue,DEC); lcd.print(" PPM"); lcd.println(" "); lcd.print(" "); delay(100); // wait 100ms for next reading } //Credits : https://create.arduino.cc/projecthub/m_karim02/arduino-and-mq-135-gas-sensor-with-arduino-code-a8c1c6
Weight | 0.2 kg |
---|---|
Dimensions | 5 × 2 × 5 cm |
You must be logged in to post a review.
Enjoy 10% off your first purchase when you shop for ₹2000 or more!
Don't worry, we won't spam you.
Reviews
There are no reviews yet.