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 //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