|
|
@ -26,16 +26,28 @@ MQUnifiedsensor MQ135(pin, type);
|
|
|
|
|
|
|
|
|
|
|
|
void setup() {
|
|
|
|
void setup() {
|
|
|
|
//init the sensor
|
|
|
|
//init the sensor
|
|
|
|
|
|
|
|
/***************************** MQInicializar****************************************
|
|
|
|
|
|
|
|
Input: pin, type
|
|
|
|
|
|
|
|
Output:
|
|
|
|
|
|
|
|
Remarks: This function create the sensor object.
|
|
|
|
|
|
|
|
************************************************************************************/
|
|
|
|
MQ135.inicializar();
|
|
|
|
MQ135.inicializar();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void loop() {
|
|
|
|
void loop() {
|
|
|
|
//Read the sensor
|
|
|
|
/***************************** MQReadSensor ****************************************
|
|
|
|
int read = MQ135.readSensor();
|
|
|
|
Input: Gas - Serial print flag
|
|
|
|
//Print measurements
|
|
|
|
Output: Value in PPM
|
|
|
|
Serial.print("MQ135: ");
|
|
|
|
Remarks: This function use readPPM to read the value in PPM the gas in the air.
|
|
|
|
Serial.print(read);
|
|
|
|
************************************************************************************/
|
|
|
|
Serial.println(" PPM");
|
|
|
|
//Read the sensor and print in serial port
|
|
|
|
//delay 1s to next measure
|
|
|
|
//Lecture will be saved in lecture variable
|
|
|
|
delay(1000);
|
|
|
|
int lecture = MQ135.readSensor("", true); // Return NH4 concentration
|
|
|
|
|
|
|
|
// Options, uncomment where you need
|
|
|
|
|
|
|
|
//int lecture = MQ135.readSensor("CO", true); // Return CO concentration
|
|
|
|
|
|
|
|
//int lecture = MQ135.readSensor("Alcohol", true); // Return Alcohol concentration
|
|
|
|
|
|
|
|
//int lecture = MQ135.readSensor("CO2", true); // Return CO2 concentration
|
|
|
|
|
|
|
|
//int lecture = MQ135.readSensor("Tolueno", true); // Return Tolueno concentration
|
|
|
|
|
|
|
|
//int lecture = MQ135.readSensor("NH4", true); // Return NH4 concentration
|
|
|
|
|
|
|
|
//int lecture = MQ135.readSensor("Acetona", true); // Return Acetona concentration
|
|
|
|
}
|
|
|
|
}
|
|
|
|