In this project, we will go over how to build a smoke sensor circuit with the micro bit. This is a sensor that is not only sensitive to smoke, but also to flammable gas.
The smoke sensor reports smoke by the voltage level that it outputs. The more smoke there is, the greater the voltage that it outputs. Conversely, the less smoke that it is exposed to, the less voltage it outputs.
The OSOYOO smoke sensor is sensitive to smoke and to the following flammable gases:
The resistance of the sensor is different depending on the type of the gas.
The smoke sensor has a built-in potentiometer that allows you to adjust the sensor sensitivity according to how accurate you want to detect gas.
1. Wide detecting scope 2. High sensitivity and fast response 3. Long life and stable 4. Simple drive circuit Due to its fast response time and high sensitivity, measurements can be taken as soon as possible. The sensor sensitivity can be adjusted by using the potentiometer.
Symbol | Parameter Name | Technical Condition | Remarks |
VC | Circuit voltage | 5V±0.1 | AC or DC |
VH | Heating voltage | 5V±0.1 | AC or DC |
RL | Load resistance | adjustable | |
RH | Heater resistance | 33Kohm±5% | Room temperature |
PH | Heating consumption | Less than 800mW |
Symbol | Parameter Name | Technical Condition | Remarks |
TO | Operating Temp. | -20°C-50°C | |
TS | Storage Temp. | -20°C-70°C | |
RH | Relative Humidity | <95% | |
O2 | Oxygen Concentration | 21%(standard condition) Oxygen concentration can affect sensitivity | Minimum value is 2% |
Symbol | Parameter Name | Technical Condition | Remarks |
RS | Sensor Resistance | 3Kohm-30Kohm (1000ppm iso-butane) | Detecting concentration scope: 200ppm-5000ppm LPG and propane 300ppm-5000ppm butane 5000ppm-20000ppm methane 300ppm-5000ppm H2 100ppm-2000ppm Alcohol |
α (3000ppm/1000ppm iso-butane) | Concentration slope rate | ≤0.6 | |
Standard detecting Condition | Temp.: 20°C±2°C VC: 5V±0.1 Humidity:65%±5% VH:5V±0.1 | ||
Preheating Time | Over 24 hours |
This module has an electrochemical sensor, which changes its resistance for different concentrations of varied gasses. The sensor is connected in series with a variable resistor to form a voltage divider circuit , and the variable resistor is used to change sensitivity. When one of the above gaseous elements comes in contact with the sensor after heating, the sensor’s resistance change. The change in the resistance changes the voltage across the sensor, and this voltage can be read by a microcontroller. The voltage value can be used to find the resistance of the sensor by knowing the reference voltage and the other resistor’s resistance. The sensor has different sensitivity for different types of gasses. The sensitivity characteristic curve is shown below for the different type of gasses.
The voltage that the sensor outputs changes accordingly to the smoke/gas level that exists in the atmosphere. The sensor outputs a voltage that is proportional to the concentration of smoke/gas.
In other words, the relationship between voltage and gas concentration is the following:
Working Mechanism
The output can be an analog signal (A0) that can be read with an analog input of the Arduino or a digital output (D0) that can be read with a digital input of the Arduino.
Note
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 don’t recommend this gas sensor.
Connect the smoke sensor to micro bit as below:
Smoke sensor | Micro bit |
VCC | +5V |
GND | GND |
D0 | P0 |
Connect the active buzzer with micro bit as below:
Active Buzzer | Micro bit |
+ | P5 |
GND | GND |
If you are not familiar to make code, don’t worry. At first, you can enter this link: https://makecode.microbit.org/reference to get the reference of microbit block.
Either copy and paste, or re-create the following code into your own MakeCode editor by clicking the open icon in the upper right-hand corner of the editor window. You can also just download this example by clicking the download button in the lower right-hand corner of the code window.
MICROPYTHON
If smoke sensor detects the smoke nearby, the active buzzer beeps; or else, it will not sound.
DownLoad Url osoyoo.com