MQ-2 가스센서 모듈 -연기, 메탄, 부탄

(MQ-2 Gas Sensor Module

-Smoke, Methane, Butane Detection)

개요

  • MQ-2 가스센서 모듈입니다. 연소 가능한 다양한 가스를 검출하는 센서로 연기, 부탄, 메탄 등을 검출합니다.
  • 모듈에는 전원을 표시하는 LED가 장착되어 있으며, DO(TTL) 출력 및 아날로그 출력 AO를 가지고 있습니다.
  • 검출되는 가스의 농도가 높을 수로 아날로그 출력 전압이 높아집니다.
  • 4개의 마운팅 홀이 있어 쉽게 모듈을 고정할 수 있습니다.

특징

  • Product dimensions: 32 x 20 x 15 (L x W x H)
  • Chip: LM393, ZYMQ-2 gas sensors
  • Working voltage: DC 5V
  • Detection of gas: combustible gases, fumes
  • Detectable concentration: 300-10000ppm (flammable gas)
  • Input voltage: DC5V
  • Power consumption (current): 150mA
  • DO output: TTL digital 0 and 1 (0.1 and 5V)
  • AO output: 0.1 - 0.3V (relative to pollution), the maximum concentration of a voltage of about 4V
  • Special note: after the sensor is powered , needs to warm up around 20S, measured data was stable , heat sensor is a normal phenomenon , because the internal heating wire , if hot is not normal .

문서

  • MQ 가스센서 가스별 탐지 모델
  • Wiring
    • 1, VCC: positive power supply (5V)
    • 2, GND: power supply is negative
    • 3, DO: TTL switching signal output
    • 4, AO: analog signal output
  • void setup() {
      Serial.begin(9600);
    }
     
    void loop() {
      float vol;
      int sensorValue = analogRead(A0);
      vol=(float)sensorValue/1024*5.0;
      Serial.println(vol,1);
    }
    

연관제품