MQ-2 Smoke/Gas, MQ-3 Alcohol, & MQ-7 Carbon Monoxide sensor modules

£6.99
VAT included

This is a sensor module kit that contains 3 of the most popular gas sensor modules: smoke/gas sensor MQ-2, alcohol sensor MQ3 and a carbon monoxide sensor MQ7.

NOTE: These sensor modules are for educational purposes only. They should not be used in safety critical applications.


MQ-2:
- Type: Smoke/Gas Sensor
- Detection types: Liquefied petroleum gas, natural gas, coal gas, smoke
- Operating voltage: 5V
- Analog output AO: the higher the concentration of combustible gas, the higher the output voltage
- Digital output DO: Adjustable concentration alarms by potentiometer, when the concentration exceeds the threshold you set, it outputs low level, otherwise high level output, and it can be connected to microcontroller or relay modules.



Image

Quantity

This is a sensor module kit that contains 3 of the most popular gas sensor modules: smoke/gas sensor MQ-2, alcohol sensor MQ3 and a carbon monoxide sensor MQ7.

NOTE: These sensor modules are for educational purposes only. They should not be used in safety critical applications.


MQ-2:
- Type: Smoke/Gas Sensor
- Detection types: Liquefied petroleum gas, natural gas, coal gas, smoke
- Operating voltage: 5V
- Analog output AO: the higher the concentration of combustible gas, the higher the output voltage
- Digital output DO: Adjustable concentration alarms by potentiometer, when the concentration exceeds the threshold you set, it outputs low level, otherwise high level output, and it can be connected to microcontroller or relay modules.



Image



Arduino example:

  1. #include <MQ2.h>
  2.  
  3. // Analogue input connected to the MQ2s A0 output
  4. #define SENS_PIN A0
  5.  
  6. MQ2 mq2(SENS_PIN);
  7.  
  8. void setup()
  9. {
  10.   Serial.begin(9600);  
  11.   mq2.begin();
  12. }
  13.  
  14.  
  15. void loop()
  16. {
  17.   // Read the sensor
  18.   mq2.read(false);
  19.  
  20.   float lpg = mq2.readLPG();
  21.   float co = mq2.readCO();
  22.   float smoke = mq2.readSmoke();
  23.  
  24.   Serial.print("LPG: "); Serial.print(lpg); Serial.print("ppm\t");
  25.   Serial.print("CO: "); Serial.print(co); Serial.print("ppm\t");
  26.   Serial.print("SMOKE: "); Serial.print(smoke); Serial.println("ppm\t");
  27.  
  28.   delay(1000);
  29. }



MQ-3:
- Type: Alcohol Sensor
- Detection types: alcohol
- Operating voltage: 5V
- Analog output AO: Adjustable concentration alarms by potentiometer, when the concentration exceeds the threshold you set, it outputs low level, otherwise high level output, and it can be connected to microcontroller or relay modules.


Arduino example:

  1. // Analogue input connected to the MQ3s A0 output
  2. #define SENS_PIN A0
  3.  
  4. void setup()
  5. {
  6.   Serial.begin(9600);
  7. }
  8.  
  9. void loop()
  10. {
  11.   // Read the sensor
  12.   unsigned int value = analogRead(SENS_PIN);
  13.  
  14.   //Output the result to the serial monitor
  15.   Serial.println(value);
  16.  
  17.   delay(1000);
  18. }



MQ-7:
- Type: Carbon Monoxide Sensor
- Detection type: carbon monoxide or other gases containing carbon monoxide
- Operating voltage: 5V
- Analog output AO: the higher the concentration of carbon monoxide, the higher the output voltage
- Digital output DO: Adjustable concentration alarms by potentiometer, when the concentration exceeds the threshold you set, it outputs low level, otherwise high level output, and it can be connected to microcontroller or relay modules.


Arduino example:

  1. // Analogue input connected to the MQ7s A0 output
  2. #define SENS_PIN A0
  3.  
  4. void setup()
  5. {
  6.   Serial.begin(9600);
  7. }
  8.  
  9. void loop()
  10. {
  11.   // Read the sensor
  12.   unsigned int value = analogRead(SENS_PIN);
  13.  
  14.   //Output the result to the serial monitor
  15.   Serial.println(value);
  16.  
  17.   delay(1000);
  18. }

Library and Datasheets available on our support forum here.

HCSENS0049
4 Items

Specific References

16 other products in the category

HLK-LD2410C Human...

LD2410C is a high-sensitivity 24GHz human presence status sensing module developed by Hi-link....

£6.99
  • Currently Out of Stock