MQ2 GSM
MQ2 GSM
MQ2 GSM
h>
LiquidCrystal_I2C lcd(0x27,16,2);
#include <SoftwareSerial.h>
#include <Wire.h>
SoftwareSerial SMS(11,10);
const int calibrationLed = 13; //when the calibration start ,
LED pin 13 will light up , off when finish calibrating
const int MQ_PIN=A1; //define which analog input
channel you are going to use
int RL_VALUE=5; //define the load resistance on
the board, in kilo ohms
float RO_CLEAN_AIR_FACTOR=9.83; //RO_CLEAR_AIR_FACTOR=(Sensor
resistance in clean air)/RO,
//which is derived from the
chart in datasheet
/***********************Software Related
Macros************************************/
int CALIBARAION_SAMPLE_TIMES=50; //define how many samples you
are going to take in the calibration phase
int CALIBRATION_SAMPLE_INTERVAL=500; //define the time interal(in
milisecond) between each samples in the
//cablibration phase
int READ_SAMPLE_INTERVAL=50; //define how many samples you
are going to take in normal operation
int READ_SAMPLE_TIMES=5; //define the time interal(in
milisecond) between each samples in
//normal operation
/**********************Application Related
Macros**********************************/
#define GAS_LPG 0
#define GAS_CO 1
#define GAS_SMOKE 2
/
*****************************Globals***********************************************
/
float LPGCurve[3] = {2.3,0.21,-0.47}; //two points are taken from the
curve.
//with these two points, a line
is formed which is "approximately equivalent"
//to the original curve.
//data format:{ x, y, slope};
point1: (lg200, 0.21), point2: (lg10000, -0.59)
float COCurve[3] = {2.3,0.72,-0.34}; //two points are taken from the
curve.
//with these two points, a line
is formed which is "approximately equivalent"
//to the original curve.
//data format:{ x, y, slope};
point1: (lg200, 0.72), point2: (lg10000, 0.15)
float SmokeCurve[3] ={2.3,0.53,-0.44}; //two points are taken from the
curve.
//with these two points, a line
is formed which is "approximately equivalent"
//to the original curve.
//data format:{ x, y, slope};
point1: (lg200, 0.53), point2: (lg10000, -0.22)
void setup()
{
Serial.begin(9600);
SMS.begin(9600);
lcd.begin(); // initialize the lcd
void loop()
{
digitalWrite(13,LOW); digitalWrite(8,LOW);
long iPPM_LPG = 0;
long iPPM_CO = 0;
long iPPM_Smoke = 0;
iPPM_LPG = MQGetGasPercentage(MQRead(MQ_PIN)/Ro,GAS_LPG);
iPPM_CO = MQGetGasPercentage(MQRead(MQ_PIN)/Ro,GAS_CO);
if(iPPM_CO >=1500){digitalWrite(13,HIGH);
digitalWrite(8,HIGH);
gsm();
}
lcd.clear();
lcd.setCursor(0,0);
lcd.print("LPG: ");
lcd.print(iPPM_LPG);
lcd.print(" ppm");
lcd.setCursor( 0, 1 );
lcd.print("CO: ");
lcd.print(iPPM_CO);
lcd.print(" ppm");
delay(200);
}
void gsm()
{long iPPM_LPG ;
long iPPM_CO ;
iPPM_LPG = MQGetGasPercentage(MQRead(MQ_PIN)/Ro,GAS_LPG);
iPPM_CO = MQGetGasPercentage(MQRead(MQ_PIN)/Ro,GAS_CO);
SMS.println("AT"); //Sets the GSM Module in Text Mode
delay(1000);
SMS.println("AT+CMGF=1"); //Sets the GSM Module in Text Mode
delay(1000);
SMS.println("AT"); //Sets the GSM Module in Text Mode
delay(1000);
SMS.println("AT+CMGF=1"); //Sets the GSM Module in Text Mode
delay(1000);
SMS.println("AT+CMGS=\"00249121143016\"\r\n"); // Replace x with mobile number
delay(1000);
SMS.print("LPG =");
SMS.print(iPPM_LPG);
SMS.print("CO =");
SMS.println(iPPM_CO);
delay(500);
delay(1000);
SMS.write(0x1A);
SMS.write(0x0D);
/****************** MQResistanceCalculation
****************************************
Input: raw_adc - raw value read from adc, which represents the voltage
Output: the calculated sensor resistance
Remarks: The sensor and the load resistor forms a voltage divider. Given the
voltage
across the load resistor and its resistance, the resistance of the sensor
could be derived.
***********************************************************************************
*/
float MQResistanceCalculation(int raw_adc)
{
return ( ((float)RL_VALUE*(1023-raw_adc)/raw_adc));
}
/***************************** MQCalibration
****************************************
Input: mq_pin - analog channel
Output: Ro of the sensor
Remarks: This function assumes that the sensor is in clean air. It use
MQResistanceCalculation to calculates the sensor resistance in clean air
and then divides it with RO_CLEAN_AIR_FACTOR. RO_CLEAN_AIR_FACTOR is about
/***************************** MQRead
*********************************************
Input: mq_pin - analog channel
Output: Rs of the sensor
Remarks: This function use MQResistanceCalculation to caculate the sensor resistenc
(Rs).
The Rs changes as the sensor is in the different consentration of the
target
gas. The sample times and the time interval between samples could be
configured
by changing the definition of the macros.
***********************************************************************************
*/
float MQRead(int mq_pin)
{
int i;
float rs=0;
for (i=0;i<READ_SAMPLE_TIMES;i++) {
rs += MQResistanceCalculation(analogRead(mq_pin));
delay(READ_SAMPLE_INTERVAL);
}
rs = rs/READ_SAMPLE_TIMES;
return rs;
}
/***************************** MQGetGasPercentage
**********************************
Input: rs_ro_ratio - Rs divided by Ro
gas_id - target gas type
Output: ppm of the target gas
Remarks: This function passes different curves to the MQGetPercentage function
which
calculates the ppm (parts per million) of the target gas.
***********************************************************************************
*/
long MQGetGasPercentage(float rs_ro_ratio, int gas_id)
{
if ( gas_id == GAS_LPG ) {
return MQGetPercentage(rs_ro_ratio,LPGCurve);
} else if ( gas_id == GAS_CO ) {
return MQGetPercentage(rs_ro_ratio,COCurve);
} else if ( gas_id == GAS_SMOKE ) {
return MQGetPercentage(rs_ro_ratio,SmokeCurve);
}
return 0;
}