MQ-6 Liquefied Petroleum Isobutane Propane Gas Sensor module

SKU: EK530 Category: Tag:

Apple Shopping Event

Hurry and get discounts on all Apple devices up to 20%

80,00 EGP

16 People watching this product now!

Payment Methods:

Description

<p>MQ-6 Liquefied Petroleum Isobutane Propane Gas Sensor module is a great way to add basic gas sensing to your project at a reasonable price. <strong>TheMQ-5 Methane LPG Liquid Propane Gas Sensor Module particulate sensor uses a Buzzer to sense any detected material that is even present in the air! </strong></p> <p>This is a simple-to-use MQ-6 Liquefied Petroleum Isobutane Propane Gas Sensor module, suitable for sensing <strong>LPG (composed of mostly propane and butane)</strong> concentrations in the air. The MQ-6 can detect gas concentrations anywhere from <strong>200 to 10000ppm</strong>. <strong>The MQ-6 Liquefied Petroleum Isobutane Propane Gas Sensor module particulate sensor uses a Potentiometer to change the detection range of the sensor! </strong></p> <p>This sensor has high sensitivity and a fast response time. The sensor’s output is an analog resistance. The drive circuit is very simple, all you need to do is power the heater coil with 5V, add a load resistance, and connect the output to an ADC.</p> <p>The sensitive material of the MQ-6 gas sensor is a tin oxide (SnO2), which with lower conductivity in clean air. When the target combustible gas exists, The sensor’s conductivity is higher along with the gas concentration rising. Please use a simple electro circuit, Convert the change of conductivity to the corresponding output signal of gas concentration.</p> <p>MQ-6 gas sensor has a high sensitivity to Propane, Butane, and LPG, also the response to Natural gas. The sensor could be used to detect different combustible gas, especially Methane, which is with low cost and suitable for different applications.</p> <h5><strong>Application</strong></h5> <ol> <li>The domestic gas leakage detector</li> <li>Industrial Combustible gas detector</li> <li>Portable gas detector</li> </ol> <p> </p> <hr /> <h4><strong>Features :</strong></h4> <ol> <li>Good sensitivity to Combustible gas in a wide range</li> <li>High sensitivity to Propane, Butane, and LPG</li> <li>Long life and low cost</li> <li>Simple drive circuit</li> <li>An indication of the signal output</li> <li>Dual signal output (analog output, and TTL level output)</li> <li>The TTL output signal is low. (When low output signal light, and can be connected directly to the microcontroller)</li> <li>0 ~ 5V analog output voltage, the higher the concentration, the higher the voltage.</li> <li>High sensitivity to hydrogen.</li> <li>Can be resistant to ethanol steam, LPG (petroleum), smoke interference.</li> <li>Has a long life and reliable stability.</li> <li>Fast response and recovery characteristics.</li> </ol> <hr /> <h4><strong>Package Includes :</strong></h4> <p>1 x MQ-6 Liquefied Petroleum isobutane-propane gas Sensor module</p>

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
MQ-6VCC/GND/AOUT5V / GND / board analog pin (see per-board note)
📟
MQ-6 Liquefied Petroleum Isobutane Propane Gas Sensor module
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
MQ-6 Liquefied Petroleum Isobutane Propane Gas Sensor module - Arduino Uno
MQ-6 Liquefied Petroleum Isobutane Propane Gas Sensor module - Arduino Nano
MQ-6 Liquefied Petroleum Isobutane Propane Gas Sensor module - Arduino Mega
MQ-6 Liquefied Petroleum Isobutane Propane Gas Sensor module - ESP32
MQ-6 Liquefied Petroleum Isobutane Propane Gas Sensor module - ESP8266
MQ-6 Liquefied Petroleum Isobutane Propane Gas Sensor module - STM32
MQ-6 Liquefied Petroleum Isobutane Propane Gas Sensor module - Raspberry Pi Pico
📄 File: mq-6_liquefied_petroleum_isobutane_propane_gas_sensor_module_-_arduino_uno.inoArduino Uno
581 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Analog pin: A0 on Arduino Uno (ADC range 0-1023, reference 5.0V)
6#define MQ_PIN A0
7
8void setup() {
9 Serial.begin(115200);
10 Serial.println("Warming up sensor (needs ~20-60s to stabilize)...");
11}
12
13void loop() {
14 int raw = analogRead(MQ_PIN);
15 float voltage = raw * 5.0 / 1023.0;
16
17 Serial.print("MQ-6 (LPG/propane) raw ADC: "); Serial.print(raw);
18 Serial.print(" Voltage: "); Serial.print(voltage);
19 Serial.println(" V (higher = more gas detected; calibrate a clean-air baseline for real ppm)");
20
21 delay(1000);
22}
📄 File: mq-6_liquefied_petroleum_isobutane_propane_gas_sensor_module_-_arduino_nano.inoArduino Nano
582 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Analog pin: A0 on Arduino Nano (ADC range 0-1023, reference 5.0V)
6#define MQ_PIN A0
7
8void setup() {
9 Serial.begin(115200);
10 Serial.println("Warming up sensor (needs ~20-60s to stabilize)...");
11}
12
13void loop() {
14 int raw = analogRead(MQ_PIN);
15 float voltage = raw * 5.0 / 1023.0;
16
17 Serial.print("MQ-6 (LPG/propane) raw ADC: "); Serial.print(raw);
18 Serial.print(" Voltage: "); Serial.print(voltage);
19 Serial.println(" V (higher = more gas detected; calibrate a clean-air baseline for real ppm)");
20
21 delay(1000);
22}
📄 File: mq-6_liquefied_petroleum_isobutane_propane_gas_sensor_module_-_arduino_mega.inoArduino Mega
582 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Analog pin: A0 on Arduino Mega (ADC range 0-1023, reference 5.0V)
6#define MQ_PIN A0
7
8void setup() {
9 Serial.begin(115200);
10 Serial.println("Warming up sensor (needs ~20-60s to stabilize)...");
11}
12
13void loop() {
14 int raw = analogRead(MQ_PIN);
15 float voltage = raw * 5.0 / 1023.0;
16
17 Serial.print("MQ-6 (LPG/propane) raw ADC: "); Serial.print(raw);
18 Serial.print(" Voltage: "); Serial.print(voltage);
19 Serial.println(" V (higher = more gas detected; calibrate a clean-air baseline for real ppm)");
20
21 delay(1000);
22}
📄 File: mq-6_liquefied_petroleum_isobutane_propane_gas_sensor_module_-_esp32.inoESP32
801 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Analog pin: 34 on ESP32 (ADC range 0-4095, reference 3.3V)
6// SAFETY: this module can output up to 5V, but ESP32's ADC input max is 3.3V.
7// Power the module from the board's 3.3V pin instead of 5V, OR add a simple
8// resistor voltage divider on the analog output before wiring it in.
9#define MQ_PIN 34
10
11void setup() {
12 Serial.begin(115200);
13 Serial.println("Warming up sensor (needs ~20-60s to stabilize)...");
14}
15
16void loop() {
17 int raw = analogRead(MQ_PIN);
18 float voltage = raw * 3.3 / 4095.0;
19
20 Serial.print("MQ-6 (LPG/propane) raw ADC: "); Serial.print(raw);
21 Serial.print(" Voltage: "); Serial.print(voltage);
22 Serial.println(" V (higher = more gas detected; calibrate a clean-air baseline for real ppm)");
23
24 delay(1000);
25}
📄 File: mq-6_liquefied_petroleum_isobutane_propane_gas_sensor_module_-_esp8266.inoESP8266
805 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Analog pin: A0 on ESP8266 (ADC range 0-1023, reference 3.3V)
6// SAFETY: this module can output up to 5V, but ESP8266's ADC input max is 3.3V.
7// Power the module from the board's 3.3V pin instead of 5V, OR add a simple
8// resistor voltage divider on the analog output before wiring it in.
9#define MQ_PIN A0
10
11void setup() {
12 Serial.begin(115200);
13 Serial.println("Warming up sensor (needs ~20-60s to stabilize)...");
14}
15
16void loop() {
17 int raw = analogRead(MQ_PIN);
18 float voltage = raw * 3.3 / 1023.0;
19
20 Serial.print("MQ-6 (LPG/propane) raw ADC: "); Serial.print(raw);
21 Serial.print(" Voltage: "); Serial.print(voltage);
22 Serial.println(" V (higher = more gas detected; calibrate a clean-air baseline for real ppm)");
23
24 delay(1000);
25}
📄 File: mq-6_liquefied_petroleum_isobutane_propane_gas_sensor_module_-_stm32.inoSTM32
803 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Analog pin: PA0 on STM32 (ADC range 0-4095, reference 3.3V)
6// SAFETY: this module can output up to 5V, but STM32's ADC input max is 3.3V.
7// Power the module from the board's 3.3V pin instead of 5V, OR add a simple
8// resistor voltage divider on the analog output before wiring it in.
9#define MQ_PIN PA0
10
11void setup() {
12 Serial.begin(115200);
13 Serial.println("Warming up sensor (needs ~20-60s to stabilize)...");
14}
15
16void loop() {
17 int raw = analogRead(MQ_PIN);
18 float voltage = raw * 3.3 / 4095.0;
19
20 Serial.print("MQ-6 (LPG/propane) raw ADC: "); Serial.print(raw);
21 Serial.print(" Voltage: "); Serial.print(voltage);
22 Serial.println(" V (higher = more gas detected; calibrate a clean-air baseline for real ppm)");
23
24 delay(1000);
25}
📄 File: mq-6_liquefied_petroleum_isobutane_propane_gas_sensor_module_-_raspberry_pi_pico.inoRaspberry Pi Pico
825 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Analog pin: 26 on Raspberry Pi Pico (ADC range 0-4095, reference 3.3V)
6// SAFETY: this module can output up to 5V, but Raspberry Pi Pico's ADC input max is 3.3V.
7// Power the module from the board's 3.3V pin instead of 5V, OR add a simple
8// resistor voltage divider on the analog output before wiring it in.
9#define MQ_PIN 26
10
11void setup() {
12 Serial.begin(115200);
13 Serial.println("Warming up sensor (needs ~20-60s to stabilize)...");
14}
15
16void loop() {
17 int raw = analogRead(MQ_PIN);
18 float voltage = raw * 3.3 / 4095.0;
19
20 Serial.print("MQ-6 (LPG/propane) raw ADC: "); Serial.print(raw);
21 Serial.print(" Voltage: "); Serial.print(voltage);
22 Serial.println(" V (higher = more gas detected; calibrate a clean-air baseline for real ppm)");
23
24 delay(1000);
25}
Analog LPG/isobutane/propane sensor.

نظرة عامة ومواصفات المنتج — بالعربية

MQ-6 Liquefied Petroleum Isobutane Propane Gas Sensor module متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم Sensors، بسعر 80,00 EGP. كود المنتج لدينا: EK530. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.

أهم المواصفات الفنية:

  • الوزن: 1 g

هذا المنتج مناسب لمشاريع الأردوينو (Arduino) و ESP32 و Raspberry Pi، ومشاريع الروبوتات وإنترنت الأشياء والتعليم الهندسي. جميع القطع مفحوصة قبل الشحن.

تصفّح المزيد من Sensors في إكوسترا.

Specification

Specification

WeightWeight10 g
Dimensions5 × 4 × 2 cm

Customer Reviews