mirror of
https://github.com/miguel5612/MQSensorsLib.git
synced 2025-03-15 05:17:30 +03:00
Ended mq5
This commit is contained in:
parent
55058a6d93
commit
b7fd6f000e
@ -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
|
Loading…
x
Reference in New Issue
Block a user