MQ-3 alcohol concentration sensor module used to detect alcohol concentration in the environment, breathing. High-sensitivity sensor with fast response, sensitivity adjustable by rheostat. The sensor provides an analog output based on the alcohol content. MQ-3 alcohol concentration sensor module can detect gas, alcohol, and ethanol.
SPECIFICATIONS:
Pinout:
VCC |
5V |
GND |
GND |
D0 |
Digital OUTPUT |
A0 |
Analog OUTPUT |
Instruction for using MQ-3 sensor with Arduino:
Connection:
MQ-3 |
Arduino |
VCC |
5V |
GND |
GND |
A0 |
A0 |
Code for MQ-3 sensor:
void setup()
{
Serial.begin(9600);
}
void loop()
{
Serial.println(analogRead(A0));
delay(1000);
}
update
...