AirQualityMQ135 _ Learning _ Wiring

2

Click here to load reader

description

Air monitoring

Transcript of AirQualityMQ135 _ Learning _ Wiring

Page 1: AirQualityMQ135 _ Learning _ Wiring

9/10/2014 AirQualityMQ135 \ Learning \ Wiring

http://wiring.org.co/learning/basics/airqualitymq135.html 1/2

Tutorials: English \ Examples: Basics, Library, Topics \ Books

Search wiring.org.co:

Cover \ Exhibition \ Reference \ Learning \ Hardware \ Download \ About »Feed »Forum »Wiki »Code

Air quality sensor: MQ135

This example is for Wiring version 1.0 build 0100+. If you have a previous version, use the examples includedwith your software. If you see any errors or have comments, please let us know.

Air Quality MQ135 sensor by BARRAGAN http://barraganstudio.com

Reads values from an air quality sensor connected to the analog input pin 0. The value read from the sensor isproportional to the air quality measured by the sensor. The value read is printed to the serial monitor

int sensorValue;

void setup()

Page 2: AirQualityMQ135 _ Learning _ Wiring

9/10/2014 AirQualityMQ135 \ Learning \ Wiring

http://wiring.org.co/learning/basics/airqualitymq135.html 2/2

Wiring is an open project initiated by Hernando Barragán. It is developed by a small team of volunteers.

© Info, Processing © Info

{

Serial.begin(9600); // sets the serial port to 9600

}

void loop()

{

sensorValue = analogRead(0); // read analog input pin 0

Serial.println(sensorValue, DEC); // prints the value read

delay(100); // wait 100ms for next reading

}