アート
美容とウェルネス
工芸
文化と歴史
エンターテインメント
環境
食品と飲料
グリーンフューチャー
リバースエンジニアリング
科学
スポーツ
テクノロジー
ウェアラブル
Building an Air-Quality Monitor
Ed

作成者

Ed

13. 7月 2026FI
1
0
0
0
0

Building an Air-Quality Monitor

Build a traffic-light air-quality monitor. An MQ-135 sensor responds to smoke, fumes, alcohol, CO2 and other gases; the Arduino compares the reading to clean air and lights a green, yellow or red LED for good, moderate or poor air. A hands-on way to watch indoor air change — with the honest limit that it shows RELATIVE quality, not a calibrated ppm figure.

中級者
1-2 hours

手順

1

Wire the sensor and three LEDs

On the breadboard: MQ-135 VCC to Arduino 5V, GND to GND, and its analog output (AOUT) to A0. Wire three LEDs — ideally green, yellow and red — to pins 5, 6 and 7, each through a 330 Ω resistor to GND (long leg to the pin).

このステップの材料:

Arduino Uno R3Arduino Uno R31
MQ-135 Air Quality Sensor ModuleMQ-135 Air Quality Sensor Module1
LED - Basic 5mm (25 pack)LED - Basic 5mm (25 pack)1 パック
Resistor 330 Ohm 1/6 Watt PTH - 20 packResistor 330 Ohm 1/6 Watt PTH - 20 pack1 パック
BreadboardBreadboard1
Jumper Wires (Male-to-Male)Jumper Wires (Male-to-Male)1 パック
2

Connect and open the IDE

Plug the Arduino into your computer with the USB cable, open the Arduino IDE, and select Arduino Uno and its serial port.

このステップの材料:

USB-B CableUSB-B Cable1

必要な工具:

Computer with Arduino IDEComputer with Arduino IDE
3

Upload the traffic-light sketch

Paste this sketch and upload. It warms the sensor, records a clean-air baseline, then lights green for good air, yellow for moderate and red for poor. Open the Serial Monitor to see the raw reading.

air_quality_monitor.inoarduino
// Traffic-light air-quality monitor using an MQ-135 sensor.
// Shows RELATIVE air quality vs a clean-air baseline - not a calibrated ppm meter.
// MQ-135 analog out on A0; green LED pin 5, yellow pin 6, red pin 7.

const int MQ135_PIN = A0;
const int GREEN_PIN = 5;
const int YELLOW_PIN = 6;
const int RED_PIN = 7;

int cleanAir = 0;             // baseline, set at startup
const int MODERATE = 80;     // rise above baseline -> moderate
const int POOR = 200;        // rise above baseline -> poor

void setup() {
  pinMode(GREEN_PIN, OUTPUT);
  pinMode(YELLOW_PIN, OUTPUT);
  pinMode(RED_PIN, OUTPUT);
  Serial.begin(9600);

  Serial.println("Warming up MQ-135 (2 min) in clean air...");
  delay(120000);
  cleanAir = analogRead(MQ135_PIN);
  Serial.print("Clean-air baseline: ");
  Serial.println(cleanAir);
}

void loop() {
  int reading = analogRead(MQ135_PIN);
  int rise = reading - cleanAir;
  Serial.println(reading);

  digitalWrite(GREEN_PIN, LOW);
  digitalWrite(YELLOW_PIN, LOW);
  digitalWrite(RED_PIN, LOW);

  if (rise >= POOR) {
    digitalWrite(RED_PIN, HIGH);       // poor
  } else if (rise >= MODERATE) {
    digitalWrite(YELLOW_PIN, HIGH);    // moderate
  } else {
    digitalWrite(GREEN_PIN, HIGH);     // good
  }
  delay(500);
}
4

Warm up, baseline and test

Run it in fresh air and let the 2-minute warm-up set the baseline (a new MQ-135 also needs a 24–48 h burn-in to settle). Then test it: breathe on it, spray a little deodorant nearby, or hold a blown-out match's smoke close — it should climb to yellow then red, and return to green in clean air. Tune MODERATE and POOR to change the thresholds.

5

Know the limits

The MQ-135 reacts to many gases at once and gives a RELATIVE reading, not a calibrated CO2 or ppm value — despite what some tutorials claim, real ppm needs proper calibration against known concentrations. It also drifts and needs re-baselining. Treat this as an air-change indicator and a great sensing project, not a laboratory instrument.

材料

7

必要な工具

1
見積もり合計
¥81

関連ブループリント

これらのブループリントは知識を共有しています — 技術、材料、原理

CC0 パブリックドメイン

このブループリントはCC0で公開されています。許可を求めずに、自由にコピー、修正、配布、あらゆる目的で使用できます。

メイカーを応援するには、ブループリント経由で製品を購入してください。メイカーには メイカーコミッション がベンダーにより設定されています。または、このブループリントの新しいイテレーションを作成し、自分のブループリントにコネクションとして含めて収益を共有できます。

ディスカッション

(0)

ログイン してディスカッションに参加

コメントを読み込み中...