Arduino-Based Air Quality Monitoring System
by yuvrajkaniyar in Circuits > Arduino
53 Views, 0 Favorites, 0 Comments
Arduino-Based Air Quality Monitoring System
.png)
This project monitors air quality using an MQ-135 gas sensor and an LM35 temperature sensor, controls an air purifier, and sends data to ThingSpeak using an ESP8266 Wi-Fi module. An I2C LCD display shows real-time values.
Downloads
Supplies
Arduino Uno
ESP8266 Wi-Fi Module
MQ-135 Gas Sensor
LM35 Temperature Sensor
Servo Motor (for air purifier fan control)
I2C LCD Display (16x2)
Buzzer (for alerts)
Resistors & Jumper Wires
Breadboard
Circuit Connections
.png)
1.1 Power Connections
- Connect 5V from Arduino to VCC of:
- ESP8266
- MQ-135 Gas Sensor
- LM35 Temperature Sensor
- I2C LCD
- Connect GND from Arduino to GND of all components.
1.2 Sensor Connections
- MQ-135 Gas Sensor:
- A0 → Arduino A0
- LM35 Temperature Sensor:
- VOUT → Arduino A1
1.3 Air Purifier Motor
- Signal Pin → Arduino D5
- VCC → 5V
- GND → GND
1.4 I2C LCD Display
- SDA → Arduino A4
- SCL → Arduino A5
1.5 ESP8266 Wi-Fi Module
- TX → Arduino RX (D0)
- RX → Arduino TX (D1)
- CH_PD → 3.3V
Upload the Arduino Code
- Open Arduino IDE and install the following libraries if not already installed:
- Adafruit_LiquidCrystal
- DHT (for temperature and humidity sensor)
- Copy and upload the provided Arduino code.
Downloads
How the Code Works

ESP8266 Setup: Connects to Wi-Fi and ThingSpeak.
Sensor Readings:
- Reads gas concentration from MQ-135.
- Reads temperature from LM35.
- Converts gas sensor values to AQI (Air Quality Index).
Air Purifier Control:
- Turns ON when AQI is above 150.
- Turns OFF when AQI is safe.
LCD Display:
- Shows temperature, gas levels, and AQI.
- Displays motor status (ON/OFF).
ThingSpeak Data Upload:
- Sends real-time sensor data every 15 seconds.
Testing the System
- Power the circuit using USB or an external power source.
- Check the LCD display for sensor values.
- Observe the motor (fan) status based on AQI.
- Open ThingSpeak to verify data updates.