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