Ks0042 keyestudio MQ-4 Gas Sensor

From Keyestudio Wiki
Revision as of 12:03, 12 August 2016 by Keyestudio (talk | contribs) (Created page with "==Introduction== MQ-4 application: it can be used in household and industrial-level gas leakage detection device to detect natural gas and methane. It is featured with wide de...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Introduction

MQ-4 application: it can be used in household and industrial-level gas leakage detection device to detect natural gas and methane. It is featured with wide detection range, high sensitivity, fast response and recovery time, with excellent stability, long service life and simple drive circuit.

Applicable gas: natural gas, methane
thumb


Specification

  • Detection Range: 300 ~ 10000ppm
  • Characteristic Gas: 5000ppm methane
  • Sensitivity: R in air/R in typical gas≥5
  • Resistance of Sensitive Material: 1KΩ~20KΩ in 5000ppm methane
  • Response Time: ≤10s
  • Recovery Time: ≤30s
  • Heating Resistance: 31Ω±3Ω
  • Heating Current: ≤180mA
  • Heating Power: ≤900mW
  • Heating Voltage: 5.0V±0.2V
  • Measuring Voltage: ≤24V

Working condition of MQ-4:

Environment temperature: -20℃~+55℃ Humidity: ≤95%RH Environment oxygen content: 21%

Storage condition of MQ-4: Temperature: -20℃~+70℃ Humidity: ≤70%RH

Connection Diagram


thumb

Sample Code

///Arduino Sample Code
void setup()
{
  Serial.begin(9600); //Set serial baud rate at 9600 bps
}
void loop()
{
int val;
val=analogRead(0);//Read Gas value from analog 0
Serial.println(val,DEC);//Print the value to serial port
delay(100);
}