From 2339f1473619848e1bc8c2baee162fc9d3d9daa7 Mon Sep 17 00:00:00 2001 From: miguel5612 Date: Tue, 9 Jul 2019 17:17:37 -0500 Subject: [PATCH] Added MQ-131, MQ-135 full example in comments --- examples/MQ-131/MQ-131.ino | 27 ++++++++++++++++++--------- examples/MQ-135/MQ-135.ino | 30 +++++++++++++++++++++--------- 2 files changed, 39 insertions(+), 18 deletions(-) diff --git a/examples/MQ-131/MQ-131.ino b/examples/MQ-131/MQ-131.ino index 832fa27..eeb4039 100644 --- a/examples/MQ-131/MQ-131.ino +++ b/examples/MQ-131/MQ-131.ino @@ -25,17 +25,26 @@ MQUnifiedsensor MQ131(pin, type); void setup() { - //init the sensor + //init the sensor + /***************************** MQInicializar**************************************** + Input: pin, type + Output: + Remarks: This function create the sensor object. + ************************************************************************************/ MQ131.inicializar(); } void loop() { - //Read the sensor - int read = MQ131.readSensor(); - //Print measurements - Serial.print("MQ131: "); - Serial.print(read); - Serial.println(" PPM"); - //delay 1s to next measure - delay(1000); + /***************************** MQReadSensor **************************************** + Input: Gas - Serial print flag + Output: Value in PPM + Remarks: This function use readPPM to read the value in PPM the gas in the air. + ************************************************************************************/ + //Read the sensor and print in serial port + //Lecture will be saved in lecture variable + int lecture = MQ131.readSensor("", true); // Return O3 concentration + // Options, uncomment where you need + //int lecture = MQ131.readSensor("NOx", true); // Return NOx concentration + //int lecture = MQ131.readSensor("CL2", true); // Return CL2 concentration + //int lecture = MQ131.readSensor("O3", true); // Return O3 concentration } diff --git a/examples/MQ-135/MQ-135.ino b/examples/MQ-135/MQ-135.ino index 942a860..694e844 100644 --- a/examples/MQ-135/MQ-135.ino +++ b/examples/MQ-135/MQ-135.ino @@ -25,17 +25,29 @@ MQUnifiedsensor MQ135(pin, type); void setup() { - //init the sensor + //init the sensor + /***************************** MQInicializar**************************************** + Input: pin, type + Output: + Remarks: This function create the sensor object. + ************************************************************************************/ MQ135.inicializar(); } void loop() { - //Read the sensor - int read = MQ135.readSensor(); - //Print measurements - Serial.print("MQ135: "); - Serial.print(read); - Serial.println(" PPM"); - //delay 1s to next measure - delay(1000); + /***************************** MQReadSensor **************************************** + Input: Gas - Serial print flag + Output: Value in PPM + Remarks: This function use readPPM to read the value in PPM the gas in the air. + ************************************************************************************/ + //Read the sensor and print in serial port + //Lecture will be saved in lecture variable + 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 }