1100 Ms1100 Ms 1100 Voc Formaldehyde Benzene Concentration Gas Sensor Module
Rs. 431.00 Rs. 492.00
- Brand: http://www.sensor-ic.com/
- Product Code: SEN-GAS
- Availability: In Stock
- Price in reward points: 6
- For Bulk Order
9962060070
| SPECIFICATIONS: | |
| Operating voltage | DC 5V |
| Operating current | 100mA |
| Maximum power | 1W |
| Operating temperature range | -25°C to 65°C |
| heating voltage | 5V + 2% (AC . DC) |
| Working current | 100mA (max) |
| circuit voltage | < DC12V |
| load resistance | 1K (adjustable) |
| detection concentration range | 0-1000ppm (different gases different scope) |
| clean air voltage | < 1V |
| Sensitivity | > 3% |
| response time | < 5S (preheat 3-5 minutes) |
| response time | > 10S |
| component power consumption | ?430mW |
| Working temperature | -10 ~ 60 oC (nominal temperature 20 oC) |
| Humidity | 90% RH (nominal humidity 65% RH) |
| lifespan | 5 years |
OVERVIEW:
-Detect VOC gases such as formaldehyde, toluene and benzene
-Detect more than 0.1ppm of gas
-Small in size
PACKAGE INCLUDES:
1 PCS x 1100 Ms1100 Ms 1100 Voc Formaldehyde Benzene Concentration Gas Sensor Module
http://www.sensor-ic.com/
//SOURCE CODE TAEN FROM BELOW LINK
//http://arduinolearning.com/code/ms1100-formaldehyde-benzene-concentration-gas-sensor-module-and-arduino-example.php
#define Aout A0
#define Dout 2
void setup()
{
// put your setup code here, to run once:
Serial.begin(9600);
pinMode(Aout,INPUT);
pinMode(Dout,INPUT);
}
void loop()
{
// put your main code here, to run repeatedly:
int a=analogRead(Aout);
int b=digitalRead(Dout);
Serial.print("D0:");
Serial.print(b);
Serial.print(" A0:");
Serial.println(a);
delay(500);
}
15 DAYS
