Ended mq5

This commit is contained in:
JhonatanRamirez 2019-05-23 16:56:30 -05:00
parent 55058a6d93
commit b7fd6f000e

View File

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