Ks0133 keyestudio EASY plug MQ135 Air Quality Sensor: Difference between revisions
Keyestudio (talk | contribs) No edit summary |
Keyestudio (talk | contribs) |
||
(8 intermediate revisions by the same user not shown) | |||
Line 4: | Line 4: | ||
MQ135 sensor uses SnO2 sensitive material because SnO2 has low electrical conductivity in the clean air. <br> | MQ135 sensor uses SnO2 sensitive material because SnO2 has low electrical conductivity in the clean air. <br> | ||
When surrounded by polluted air, the electrical conductivity of MQ135 sensor will increase with the increase of pollutants, and the change in electrical conductivity can be converted to corresponding output signal. <br> | When surrounded by polluted air, the electrical conductivity of MQ135 sensor will increase with the increase of pollutants, and the change in electrical conductivity can be converted to corresponding output signal. <br> | ||
You can rotate the potentiometer on the sensor to adjust the sensitivity. | You can rotate the potentiometer on the sensor to adjust the sensitivity. MQ135 has a high sensitivity to ammonia, sulfide, benzene vapor, smoke and other harmful gases.<br> | ||
MQ135 has a high sensitivity to ammonia, sulfide, benzene vapor, smoke and other harmful gases.<br> | This module should be used together with EASY plug control board.<br> | ||
<span style= | |||
<span style=color:red> '''Special Note:''' <br> | |||
The sensor/module is equipped with the RJ11 6P6C interface, compatible with our keyestudio EASY plug Control Board with RJ11 6P6C interface. <br> If you have the control board of other brands, it is also equipped with the RJ11 6P6C interface but has different internal line sequence, can’t be used compatibly with our sensor/module. </span><br> | |||
<br> | <br> | ||
==Features== | ==Features== | ||
*Interface: Easy plug | *Interface: Easy plug | ||
Line 24: | Line 27: | ||
<br> | <br> | ||
==Connect It Up== | ==Connect It Up== | ||
Connect the EASY Plug | Connect the EASY Plug MQ135 sensor to control board using an RJ11 cable. Then connect the control board to your PC with a USB cable. | ||
<br>[[File:Ks0133- 2.png| | <br>[[File:Ks0133- 2.png|700px|frameless|thumb]]<br> | ||
<br> | <br> | ||
==Upload the Code== | ==Upload the Code== | ||
Copy and paste below code to [http://wiki.keyestudio.com/index.php/How_to_Download_Arduino_IDE Arduino IDE] and upload. | Copy and paste below code to [http://wiki.keyestudio.com/index.php/How_to_Download_Arduino_IDE Arduino IDE] and upload. | ||
Line 64: | Line 68: | ||
==What You Should See== | ==What You Should See== | ||
Done uploading the test code, open the serial monitor and set the baud rate to 9600, you should be able to see the “Gas leakage” and analog value. | Done uploading the test code, open the serial monitor and set the baud rate to 9600, you should be able to see the “Gas leakage” and analog value. | ||
<br>[[File:Ks0133-4.png| | <br>[[File:Ks0133-4.png|700px|frameless|thumb]] [[File:Ks0133 result.png|600px|frameless|thumb]]<br> | ||
<br> | <br> | ||
==Resources == | ==Resources == | ||
https://fs.keyestudio.com/KS0133 | |||
https:// | |||
<br> | <br> | ||
==Buy from == | ==Buy from == | ||
* | *[https://www.keyestudio.com/keyestudio-easy-plug-mq-135-air-quality-sensor-gas-detection-module-for-arduino-steam-p0099.html '''Official Website''' ] | ||
*[https://www.aliexpress.com/store/product/ | *[https://www.aliexpress.com/store/product/New-Keyestudio-EASY-plug-MQ-135-Air-Quality-Sensor-Module-for-arduino/1452162_32645593523.html?spm=2114.12010612.8148356.8.7ebe24eaqM2oiA Shop on aliexpress ] | ||
[[category:EASY Plug]] | [[category:EASY Plug]] |
Latest revision as of 16:48, 7 January 2021
Introduction
MQ135 sensor uses SnO2 sensitive material because SnO2 has low electrical conductivity in the clean air.
When surrounded by polluted air, the electrical conductivity of MQ135 sensor will increase with the increase of pollutants, and the change in electrical conductivity can be converted to corresponding output signal.
You can rotate the potentiometer on the sensor to adjust the sensitivity. MQ135 has a high sensitivity to ammonia, sulfide, benzene vapor, smoke and other harmful gases.
This module should be used together with EASY plug control board.
Special Note:
The sensor/module is equipped with the RJ11 6P6C interface, compatible with our keyestudio EASY plug Control Board with RJ11 6P6C interface.
If you have the control board of other brands, it is also equipped with the RJ11 6P6C interface but has different internal line sequence, can’t be used compatibly with our sensor/module.
Features
- Interface: Easy plug
- Sensor type: Semiconductor
- Operating voltage: 5V DC
- Load resistance: Adjustable RL
- Quick response and high sensitivity
- Target gas: ammonia; methylbenzene; hydrogen
Technical Details
- Dimensions: 56mm*20mm*18mm
- Weight: 9.2g
Connect It Up
Connect the EASY Plug MQ135 sensor to control board using an RJ11 cable. Then connect the control board to your PC with a USB cable.
Upload the Code
Copy and paste below code to Arduino IDE and upload.
int gas_din=2; int gas_ain=A7; int led=13; int ad_value; void setup() { pinMode(led,OUTPUT); pinMode(gas_din,INPUT); pinMode(gas_ain,INPUT); Serial.begin(9600); } void loop() { ad_value=analogRead(gas_ain); if(digitalRead(gas_din)==LOW) { digitalWrite(led,HIGH); Serial.println("Gas leakage"); Serial.println(ad_value); } else { digitalWrite(led,LOW); Serial.println("Gas not leak"); Serial.println(ad_value); } delay(500); }
What You Should See
Done uploading the test code, open the serial monitor and set the baud rate to 9600, you should be able to see the “Gas leakage” and analog value.
Resources
https://fs.keyestudio.com/KS0133