Grove HCHO Sensor
Last updated
Last updated
The Grove - HCHO Sensor is a semiconductor VOC gas sensor. Its design is based on WSP2110 whose conductivity changes with the concentration of VOC gas in air. Through the circuit, the conductivity can be converted to output signal that corresponding to the gas concentration. This sensor can detect the gas whose concentration is up to 1ppm. It’s suitable for detecting formaldehyde, benzene, toluene and other volatile components. This product can be used to detect harmful gas in the home environment. Therefore, it’s a good assistant for you to improve indoor environment quality of life.
Warning The sensor value only reflects the approximated trend of gas concentration in a permissible error range, it DOES NOT represent the exact gas concentration. The detection of certain components in the air usually requires a more precise and costly instrument, which cannot be done with a single gas sensor. If your project is aimed at obtaining the gas concentration at a very precise level, then we do not recommend this gas sensor.
Operating Voltage: 5.0V ± 0.3V
Target Gases: HCHO, Benzene,Toluene,Alcohol
Concentration Range: 1~50 ppm
Sensor Resistance Value(Rs): 10KΩ-100KΩ(in 10ppm HCHO)
Sensitivity: Rs(in air)/Rs(10ppm HCHO)≥5
!!!Tip More details about Grove modules please refer to Grove System
The Grove - HCHO Sensor can be used to detect VOCs, such as HCHO,toluene, benzene, alcohol. Here we take HCHO for an example to demonstrate how to use this sensor.
After uploading the code, open the serial monitor to get the R0 under normal condition(outdoor is the best).
Adjust the resistance of R1(the blue potentiometer) with a small screwer to make the number of R0 in the range of 10-100 and record that number(my R0 number here is 34.28).
Type your number of R0 in #define R0 ***
, then uploading the code. Remember not to screw R1 anymore, unless you decide to detect R0 again.
Then move the sensor into the office, and read the HCHO ppm value:
From the Typical Sensitivity Curve we could know that the detection range is 1-50ppm.
To detect other VOC gas, you could calculate Rs/R0, then refer to the sensitivity characteristic diagram and find the gas concentration. Or use the following python script to fit the typical sensitivity curve and calculate the value of a and b:
ppm = 10 ^ ((log10(Rs/R0) + a) / b)