Ks0040 keyestudio Analog Gas Sensor: Difference between revisions
Jump to navigation
Jump to search
Keyestudio (talk | contribs) No edit summary |
Keyestudio (talk | contribs) |
||
Line 51: | Line 51: | ||
http://video.keyestudio.com/ks0040/ | http://video.keyestudio.com/ks0040/ | ||
* '''PDF'''<br> | * '''PDF and Code'''<br> | ||
https://drive.google.com/open?id= | https://drive.google.com/open?id=1KwsHZO5Hsl8lGlbw2eg3eKwr7B2wBL7c | ||
<br> | <br> | ||
==Buy from == | ==Buy from == | ||
Revision as of 08:28, 19 April 2019
Introduction
This analog gas sensor - MQ2 is used in gas leakage detecting equipment in consumer electronics and industrial markets.
This sensor is suitable for detecting LPG, I-butane, propane, methane, alcohol, Hydrogen and smoke. It has high sensitivity and quick response.
In addition, the sensitivity can be adjusted by rotating the potentiometer.
Specification
- Power Supply: 5V
- Interface Type: Analog
- Wide detecting scope
- Quick response and High sensitivity
- Simple drive circuit
- Stable and long lifespan
Connection Diagram
Sample Code
///Arduino Sample Code void setup() { Serial.begin(9600); //Set serial baud rate to 9600 bps } void loop() { int val; val=analogRead(0);//Read Gas value from analog 0 Serial.println(val,DEC);//Print the value to serial port delay(100); }
Result
Done wiring and powered up, upload well the code, then open the serial monitor and set the baud rate as 9600, you will see the analog value. When detecting the gas, the value will make a change.
Resources
- Video
http://video.keyestudio.com/ks0040/
- PDF and Code
https://drive.google.com/open?id=1KwsHZO5Hsl8lGlbw2eg3eKwr7B2wBL7c