42 lines
780 B
Arduino
Raw Normal View History

2019-05-23 16:51:24 -05:00
/*
2019-05-23 17:00:22 -05:00
MQUnifiedsensor Library - reading an MQ131
2019-05-23 16:51:24 -05:00
2019-05-23 17:00:22 -05:00
Demonstrates the use a MQ131 sensor.
2019-05-23 16:51:24 -05:00
Library originally added 01 may 2019
by Miguel A Califa, Yersson Carrillo, Ghiordy Contreras, Mario Rodriguez
Added example
modified 23 May 2019
by Miguel Califa
This example code is in the public domain.
*/
//Include the library
2019-05-19 13:27:00 -05:00
#include <MQUnifiedsensor.h>
2019-05-23 16:51:24 -05:00
//Definitions
#define pin A0 //Analog input 0 of your arduino
2019-05-23 17:00:22 -05:00
#define type 131 //MQ131
2019-05-19 13:27:00 -05:00
2019-05-23 16:51:24 -05:00
//Declare Sensor
2019-05-23 17:00:22 -05:00
MQUnifiedsensor MQ131(pin, type);
2019-05-19 13:27:00 -05:00
2019-05-23 16:51:24 -05:00
void setup() {
//init the sensor
2019-05-23 17:00:22 -05:00
MQ131.inicializar();
2019-05-19 13:27:00 -05:00
}
void loop() {
2019-05-23 16:51:24 -05:00
//Read the sensor
2019-05-23 17:00:22 -05:00
int read = MQ131.readSensor();
2019-05-23 16:51:24 -05:00
//Print measurements
2019-05-23 17:00:22 -05:00
Serial.print("MQ131: ");
2019-05-23 16:51:24 -05:00
Serial.print(read);
Serial.println(" PPM");
//delay 1s to next measure
delay(1000);
2019-05-19 13:27:00 -05:00
}