VAIBHAV DUBEY
Published © GPL3+

Air Quality Monitoring Using MQ-135 and Arduino

In this project, we interface the MQ-135 with an Arduino Uno to measure air quality levels and display the readings on the Serial Monitor.

BeginnerProtip1 hour34
Air Quality Monitoring Using MQ-135 and Arduino

Things used in this project

Story

Read more

Schematics

CONNECTION CIRCUIT

Code

Untitled file

C/C++
#define MQ135_PIN A0

void setup() {
  Serial.begin(9600);
  Serial.println("MQ-135 Air Quality Monitoring");
}

void loop() {
  int airQualityValue = analogRead(MQ135_PIN);

  Serial.print("Air Quality Value: ");
  Serial.println(airQualityValue);

  delay(1000);
}

Credits

VAIBHAV DUBEY
11 projects • 5 followers
Aspiring hardware engineer focused on embedded systems, high‑reliability circuit design, and PCB layout for IoT and robotics projects.

Comments