
Mq135 Air Quality Sensor
sensors

The MQ3 Gas Sensor is designed to detect alcohol vapors, making it popular for breathalyzer systems, alcohol detection devices, and safety applications. Its sensitivity and reliability make it ideal for both consumer and industrial use.
The MQ3 Gas Sensor is designed to detect alcohol vapors, making it popular for breathalyzer systems, alcohol detection devices, and safety applications. Its sensitivity and reliability make it ideal for both consumer and industrial use.
The MQ3 sensor uses a SnO₂ (tin dioxide) sensing layer. In clean air, the layer has low conductivity. When exposed to alcohol vapors, the conductivity increases, and the change in resistance is used to measure the concentration of alcohol.
const int analogPin = A0; // Analog output pin
const int digitalPin = 2; // Digital output pin
int analogValue = 0;
void setup() {
Serial.begin(9600);
pinMode(digitalPin, INPUT);
}
void loop() {
// Read analog value
analogValue = analogRead(analogPin);
// Print analog value (alcohol concentration)
Serial.print("Analog Value: ");
Serial.println(analogValue);
// Check digital output
if (digitalRead(digitalPin) == HIGH) {
Serial.println("Alcohol concentration exceeded threshold!");
}
delay(1000);
}
Shop more
Products from the same category or commonly paired with this item.
Shop more
Customer favorites that are getting the most attention.
Shop more
Freshly added items from the shop.