Ks0041 keyestudio Analog Alcohol Sensor: Difference between revisions
Jump to navigation
Jump to search
Keyestudio (talk | contribs) No edit summary |
Keyestudio (talk | contribs) (→Result) |
||
(3 intermediate revisions by the same user not shown) | |||
Line 17: | Line 17: | ||
<br> | <br> | ||
==Connection Diagram == | ==Connection Diagram == | ||
<br>[[File: | <br>[[File:QQ图片20210715163304.png|700px|frameless|thumb]]<br> | ||
<br> | <br> | ||
==Sample Code == | ==Sample Code == | ||
<pre> | <pre> | ||
Line 38: | Line 39: | ||
<br> | <br> | ||
== Result == | == Result == | ||
<br>[[File: | <br>[[File:QQ图片20210715163305.png|600px|frameless|thumb]]<br> | ||
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 alcohol gas, the value will make a change. | 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 alcohol gas, the value will make a change. | ||
<br>[[File:KS0349 26-3.png|600px|frameless|thumb]]<br> | <br>[[File:KS0349 26-3.png|600px|frameless|thumb]]<br> | ||
Line 44: | Line 45: | ||
<br> | <br> | ||
==Resources == | ==Resources == | ||
Line 50: | Line 52: | ||
* '''PDF and Code'''<br> | * '''PDF and Code'''<br> | ||
https:// | https://fs.keyestudio.com/KS0041 | ||
<br> | <br> | ||
==Buy from == | ==Buy from == | ||
Latest revision as of 16:45, 15 July 2021
Introduction
This analog gas sensor - MQ3 is suitable for detecting alcohol. It can be used in a breath analyzer.
It has good selectivity because it has higher sensitivity to alcohol and lower sensitivity to Benzine.
The sensitivity can be adjusted by rotating the potentiometer.
Specification
- Power Supply: 5V
- Interface Type: Analog
- Quick response and High sensitivity
- Simple drive circuit
- Stable and long service life
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 alcohol gas, the value will make a change.
Resources
- Video
http://video.keyestudio.com/ks0041/
- PDF and Code
https://fs.keyestudio.com/KS0041