Mics 5524 Carbon Monoxide Hydrogen Methane Alcohol Gas Sensor Detection Module
Rs. 694.00 Rs. 792.00
- Brand: https://sgx.cdistore.com/products/detail/mics5524-sgx-sensortech
- Product Code: SEN-GAS
- SKU -
- Availability: In Stock
- Price in reward points: 6
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
- This sensor is sensitive to CO ( ~ 1 to 1000 ppm), Ammonia (~ 1 to 500 ppm), Ethanol (~ 10 to 500 ppm), H2 (~ 1 – 1000 ppm), and Methane / Propane / Iso-Butane (~ 1,000++ ppm). However, it can’t tell you which gas it has detected.
- This breakout board is not for any safety, medical or finished product usage. We’re selling it for hobby education & experimentation and don’t guarantee it for any other purpose; All gas sensors require calibration for precision output.
- Power it with 5 VDC and read the analog voltage off of the output pin. When gasses are detected, the analog voltage will increase in the proportion of detected gas. When powered, the heater draws about 25-35mA. You can use the EN pin to power it off (pull it high to 5V to turn off) to conserve energy. Just make sure to wait for a second after turning the heater on to make sure its all heated before taking readings.
- Each order comes with one assembled and tested MiCS-5524 breakout and a bit of header. You’ll need to do some light soldering to attach the header on – or you can use just plain wires.
SPECIFICATIONS | |
Model | MICS5524 |
Input Voltage ( Volt) | 4.9 – 5.1 |
Maximum Heater power dissipation (mW) | 88 |
Relative Humidity Range (%RH) | 5 – 95 |
Operating Temperature Range (Celsius) | -30 ~ 85 |
OVERVIEW:
-CO ( 1 to 1000 ppm).
-Ammonia ( 1 to 500 ppm).
-Ethanol ( 10 to 500 ppm).
-H2 ( 1 – 1000 ppm).
-Methane / Propane / Iso-Butane ( 1,000++ ppm).
PACKAGE INCLUDES:
1 PCS x Mics 5524 Carbon Monoxide Hydrogen Methane Alcohol Gas Sensor Detection Module
https://sgx.cdistore.com/products/detail/mics5524-sgx-sensortech/333420/
//SOURCE CODE TAKEN FROM BELOW LINK
//https://learn.adafruit.com/adafruit-mics5524-gas-sensor-breakout/usage
#define LED 11
void setup() {
Serial.begin(115200);
Serial.println("MiCS-5524 demo!");
pinMode(LED, OUTPUT);
}
void loop() {
int reading = analogRead(A0);
Serial.println(reading);
analogWrite(LED, reading);
delay(10);
}
15 days