Skip to product information
NaN of -Infinity

vendor-unknown

Testing a MQ-8 Gas Sensor interfacing with arduino uno -KT895

Testing a MQ-8 Gas Sensor interfacing with arduino uno -KT895

SKU:KT895

997 in stock

Regular price Rs. 1,049.00
Regular price Sale price Rs. 1,049.00
Sale Sold out
Shipping calculated at checkout.

Pickup available at REES52 OFFICE

Usually ready in 24 hours

For refund/return/replacement, call us at +91 95995 94524 , +91 95995 94520 or mail us at support@rees52.com

  • Delivery time with the Express Shipping option is 2-3 working days, and with the Standard Shipping option is 5-6 working days. It varies based on location, reliant on courier services.

  • Delivery time if the order item is on Preorder Status is 15-20 working days.
  • For COD you have to pay extra charges of Rs 350/- before the shipment. (We will share the company QR Code, UPI ID or Account details for the same)
View full details

KIT INCLUDES:


HARDWARE REQUIRED

SOFTWARE REQUIRED

Arduino IDE 1.8.5 (programmable platform for Arduino)

Click To Download:https://www.arduino.cc/en/Main/Software

SPECIFICATIONS

MQ-8 GAS SENSOR MODULE

The MQ-8 Gas Sensor module is useful for gas leakage detection. They are used in gas leakage detecting equipment’s in-home and industry, are suitable for detecting Hydrogen.Due to its high sensitivity and response time, measurements can be taken as soon as possible. Try and avoid alcohol, LPG, cooking fumes as the sensor has slight sensitivity to these substances and this may affect the results

  • High sensitivity to Hydrogen
  • Small sensitivity to alcohol, LPG, cooking fumes
  • Fast response.
  • Stable and long life
  • Simple drive circuit



PIN DESCRIPTION

MQ-8 GAS SENSOR MODULE

CIRCUIT CONNECTION

Gas Sensor

Arduino uno

VCC

5v

GND

GND

AO

Analog pin 0

DO

Not connected

CODE

void setup()

{

Serial.begin(9600);

}

void loop()

{

float sensorVoltage;

float sensorValue;

sensorValue = analogRead(A0);

sensorVoltage = sensorValue/1024*5.0;

Serial.print("sensor voltage = ");

Serial.print(sensorVoltage);

Serial.println(" V");

delay(2000);

}

WORKING

After uploading the code, you will see the serial monitor reading. It took about 3 minutes for the readings to stabilize. Remember it consists of a heating element, so you effectively have to let the sensor 'heat up'.