115 lines
4.3 KiB
Arduino
Raw Normal View History

2019-05-23 16:51:24 -05:00
/*
2019-05-23 17:00:48 -05:00
MQUnifiedsensor Library - reading an MQ309
2019-05-23 16:51:24 -05:00
2019-05-23 17:00:48 -05:00
Demonstrates the use a MQ309 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
2020-03-26 13:20:05 -05:00
Updated library usage
modified 26 March 2020
by Miguel Califa
2020-03-29 21:45:42 -05:00
Wiring:
https://github.com/miguel5612/MQSensorsLib_Docs/blob/master/static/img/MQ_Arduino.PNG
2022-03-20 12:53:36 -05:00
Please make sure arduino A0 pin represents the analog input configured on #define pin
2020-03-26 13:20:05 -05:00
2019-05-23 16:51:24 -05:00
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
2020-03-26 13:20:05 -05:00
#define placa "Arduino UNO"
#define Voltage_Resolution 5
2019-05-23 16:51:24 -05:00
#define pin A0 //Analog input 0 of your arduino
2020-03-26 13:20:05 -05:00
#define type "MQ-309" //MQ309
#define ADC_Bit_Resolution 10 // For arduino UNO/MEGA/NANO
2020-03-27 22:03:29 -05:00
#define RatioMQ309CleanAir 11 //RS / R0 = 11 ppm
2020-04-20 19:23:45 -05:00
#define PWMPin 5 // Pin connected to mosfet
2019-05-19 13:27:00 -05:00
2019-05-23 16:51:24 -05:00
//Declare Sensor
2020-03-26 13:20:05 -05:00
MQUnifiedsensor MQ309(placa, Voltage_Resolution, ADC_Bit_Resolution, pin, type);
2020-04-20 19:23:45 -05:00
unsigned long oldTime = 0;
2019-08-14 22:31:06 -05:00
2019-05-23 16:51:24 -05:00
void setup() {
2020-03-26 13:20:05 -05:00
//Init the serial port communication - to debug the library
2019-08-14 22:31:06 -05:00
Serial.begin(9600); //Init serial port
2020-04-20 19:23:45 -05:00
pinMode(PWMPin, OUTPUT);
2019-05-19 13:27:00 -05:00
2020-03-26 13:20:05 -05:00
//Set math model to calculate the PPM concentration and the value of constants
2020-03-26 22:18:07 -05:00
MQ309.setRegressionMethod(1); //_PPM = a*ratio^b
2022-03-20 12:53:36 -05:00
MQ309.setA(1000000); MQ309.setB(-4.01); // Configure the equation to calculate CO concentration value
2020-03-26 13:20:05 -05:00
/*
2020-03-26 13:20:05 -05:00
Exponential regression:
GAS | a | b
H2 | 1532.9 | -1.951
CH4 | 980.24 | -1.68
CO | 1000000 | -4.01
ALCOHOL | 473622 | -3.647
*/
2020-03-26 13:20:05 -05:00
2020-03-30 19:17:25 -05:00
/***************************** MQ Init ********************************************/
//Remarks: Configure the pin of arduino as input.
/************************************************************************************/
MQ309.init();
/*
//If the RL value is different from 10K please assign your RL value with the following method:
MQ309.setRL(10);
*/
2020-03-27 22:03:29 -05:00
/***************************** MQ CAlibration ********************************************/
// Explanation:
2022-03-20 12:53:36 -05:00
// In this routine the sensor will measure the resistance of the sensor supposedly before being pre-heated
// and on clean air (Calibration conditions), setting up R0 value.
// We recomend executing this routine only on setup in laboratory conditions.
// This routine does not need to be executed on each restart, you can load your R0 value from eeprom.
2020-03-27 22:03:29 -05:00
// Acknowledgements: https://jayconsystems.com/blog/understanding-a-gas-sensor
Serial.print("Calibrating please wait.");
2020-03-27 22:54:05 -05:00
float calcR0 = 0;
2020-03-29 15:51:54 -05:00
for(int i = 1; i<=10; i ++)
2020-03-27 22:03:29 -05:00
{
2022-03-20 12:53:36 -05:00
MQ309.update(); // Update data, the arduino will read the voltage from the analog pin
2020-03-27 22:03:29 -05:00
calcR0 += MQ309.calibrate(RatioMQ309CleanAir);
Serial.print(".");
}
MQ309.setR0(calcR0/10);
Serial.println(" done!.");
2022-03-20 12:53:36 -05:00
if(isinf(calcR0)) {Serial.println("Warning: Conection issue, R0 is infinite (Open circuit detected) please check your wiring and supply"); while(1);}
if(calcR0 == 0){Serial.println("Warning: Conection issue found, R0 is zero (Analog pin shorts to ground) please check your wiring and supply"); while(1);}
2020-03-27 22:03:29 -05:00
/***************************** MQ CAlibration ********************************************/
2020-03-26 13:20:05 -05:00
MQ309.serialDebug(true);
2019-05-19 13:27:00 -05:00
}
2020-03-26 13:20:05 -05:00
void loop() {
2020-04-20 19:23:45 -05:00
// 60s cycle
oldTime = millis();
while(millis() - oldTime <= (30*1000))
{
// VH 0.9 Volts
analogWrite(5, 2); // 255 is 100%, 2.295 is aprox 0.9% of Duty cycle for 60s
2022-03-20 12:53:36 -05:00
MQ309.update(); // Update data, the arduino will read the voltage from the analog pin
MQ309.readSensor(); // Sensor will read PPM concentration using the model, a and b values set previously or from the setup
2020-04-20 19:23:45 -05:00
MQ309.serialDebug(); // Will print the table on the serial port
delay(500); //Sampling frequency
}
// 90s cycle
oldTime = millis();
while(millis() - oldTime <= (120*1000))
{
// VL 0.2 Volts
analogWrite(5, 1); // 255 is 100%, 0.51 is aprox 0.2% of Duty cycle for 120s
2022-03-20 12:53:36 -05:00
MQ309.update(); // Update data, the arduino will read the voltage from the analog pin
MQ309.readSensor(); // Sensor will read PPM concentration using the model, a and b values set previously or from the setup
2020-04-20 19:23:45 -05:00
MQ309.serialDebug(); // Will print the table on the serial port
delay(500); //Sampling frequency
}
// Total: 30 + 120s = 2.5 minutes.
2020-03-26 13:20:05 -05:00
}