|
|
@ -18,22 +18,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
//Definitions
|
|
|
|
//Definitions
|
|
|
|
#define pin A0 //Analog input 0 of your arduino
|
|
|
|
#define pin A0 //Analog input 0 of your arduino
|
|
|
|
#define type 4 //MQ4
|
|
|
|
#define type 5 //MQ4
|
|
|
|
|
|
|
|
|
|
|
|
//Declare Sensor
|
|
|
|
//Declare Sensor
|
|
|
|
|
|
|
|
|
|
|
|
MQUnifiedsensor MQ4(pin, type);
|
|
|
|
MQUnifiedsensor MQ5(pin, type);
|
|
|
|
|
|
|
|
|
|
|
|
void setup() {
|
|
|
|
void setup() {
|
|
|
|
//init the sensor
|
|
|
|
//init the sensor
|
|
|
|
MQ4.inicializar();
|
|
|
|
MQ5.inicializar();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void loop() {
|
|
|
|
void loop() {
|
|
|
|
//Read the sensor
|
|
|
|
//Read the sensor
|
|
|
|
int read = MQ4.readSensor();
|
|
|
|
int read = MQ5.readSensor();
|
|
|
|
//Print measurements
|
|
|
|
//Print measurements
|
|
|
|
Serial.print("MQ4: ");
|
|
|
|
Serial.print("MQ5: ");
|
|
|
|
Serial.print(read);
|
|
|
|
Serial.print(read);
|
|
|
|
Serial.println(" PPM");
|
|
|
|
Serial.println(" PPM");
|
|
|
|
//delay 1s to next measure
|
|
|
|
//delay 1s to next measure
|