Ks0133 keyestudio EASY plug MQ135 Air Quality Sensor: Difference between revisions

From Keyestudio Wiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
==EASY plug MQ135 Air Quality Sensor==
[[image:ks0131图.jpg|thumb|600px|right|EASY plug Analog Gas Sensor ]]
<br>[[File:ks0133-1.png|500px|frameless|thumb]]<br>


==Introduction==
==Introduction==
MQ135 adopts SnO2 as its gas sensitive material because SnO2 has low electrical conductivity in the clean air. So when surrounded by polluted air, the electrical conductivity of MQ135 will increase with the increase of pollutants, and the change in electrical conductivity can be converted to corresponding output signal. <br>
MQ135 sensor uses SnO2 sensitive material because SnO2 has low electrical conductivity in the clean air. <br>
MQ135 has a high sensitivity to Ammonia, sulfide, benzene vapor, smoke and other harmful gases. It can detect various harmful gases, making it a cost-effective choice suitable for multiple applications. <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>
Note: this module needs to be used together with EASY plug control board.<br>
You can rotate the potentiometer on the sensor to adjust the sensitivity.<br>
MQ135 has a high sensitivity to ammonia, sulfide, benzene vapor, smoke and other harmful gases.<br>
<span style="color: red">'''Note: ''' this module should be used together with EASY plug control board.<br>


<br>
==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
<br>


==Specification==
==Technical Details==
* Interface: Easy plug
* Dimensions: 56mm*20mm*18mm
* Product model: MQ135
* Weight: 9.2g
* Product type: Semiconductor gas sensor
* Target gas: Ammonia; methylbenzene; hydrogen
* Standard circuit: Loop voltage  Vc ≤24V  DC
* Heater voltage: VH 5.0V±0.2V AC or DC
* Load resistance: Adjustable RL
* Size: 56*20mm
* Weight: 8g


<br>
==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.
<br>[[File:ks0131.jpg|500px|frameless|thumb]]<br>


==Connection Diagram ==
<br>
<br>[[File:ks0133-2.png|500px|frameless|thumb]]<br>
==Upload the Code==
 
Copy and paste below code to [http://wiki.keyestudio.com/index.php/How_to_Download_Arduino_IDE Arduino IDE] and upload.
 
==Sample Code==
<pre>
<pre>
int gas_din=18;
int gas_din=2;
int gas_ain=A5;
int gas_ain=A7;
int led=13;
int led=13;
int ad_value;
int ad_value;
Line 55: Line 60:
}
}
</pre>
</pre>
<br>
==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.
<br>[[File:ks0131 Result.png|600px|frameless|thumb]]  [[File:ks0131 Result1.png|600px|frameless|thumb]]<br>
<br>


==Resources ==
==Resources ==
'''Download the PDF:'''<br>
https://drive.google.com/open?id=1pyThscSF3TAERFTrTj7xfPnUuO15KSsR


'''PDF'''
'''Download the Code:'''<br>
https://drive.google.com/open?id=1ZyuI9kgD-cFl9uK3tMqLUqj-ZIvEQqc8


https://drive.google.com/open?id=18KvRqj_AdeugZOYtHy37wv2uTH_lMW-W
<br>


==Buy from ==
==Buy from ==
'''Official Website'''
*'''Official Website:''' http://www.keyestudio.com/ks0131.html
 
http://www.keyestudio.com/keyestudio-easy-plug-mq-135-air-quality-sensor-module-for-arduino.html


*[https://www.aliexpress.com/store/product/NEW-Keyestudio-EASY-plug-Analog-Gas-Sensor-MQ-2-for-arduino-starter/1452162_32647755242.html?spm=2114.12010612.8148356.54.60624ba73cp1Lj  Shop on aliexpress ]


[[category:EASY Plug]]
[[category:EASY Plug]]

Revision as of 09:58, 28 November 2018

EASY plug Analog Gas Sensor

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.
Note: this module should be used together with EASY plug control board.


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.
thumb


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.
thumb thumb


Resources

Download the PDF:
https://drive.google.com/open?id=1pyThscSF3TAERFTrTj7xfPnUuO15KSsR

Download the Code:
https://drive.google.com/open?id=1ZyuI9kgD-cFl9uK3tMqLUqj-ZIvEQqc8


Buy from