Skip to content

Commit

Permalink
Fixed merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
miguel5612 committed Sep 28, 2019
2 parents b85e752 + e5578c1 commit 3261318
Show file tree
Hide file tree
Showing 13 changed files with 59 additions and 11 deletions.
6 changes: 5 additions & 1 deletion examples/MQ-131/MQ-131.ino
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,16 @@ void setup() {

void loop() {
MQ131.update(); // Update data, the arduino will be read the voltaje in the analog pin
/*
// Si el valor de RL es diferente a 10K por favor asigna tu valor de RL con el siguiente metodo:
MQ131.setRL(10);
*/
/*
//Rutina de calibracion - Uncomment if you need (setup too and header)
if(calibration_button)
{
float R0 = MQ131.calibrate();
MQ131.setR0(R0):
MQ131.setR0(R0);
}
*/
/***************************** MQReadSensor ****************************************
Expand Down
4 changes: 4 additions & 0 deletions examples/MQ-135/MQ-135.ino
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ void setup() {

void loop() {
MQ135.update(); // Update data, the arduino will be read the voltaje in the analog pin
/*
//Si el valor de RL es diferente a 10K por favor asigna tu valor de RL con el siguiente metodo:
MQ135.setRL(10);
*/
/*
//Rutina de calibracion - Uncomment if you need (setup too and header)
if(calibration_button)
Expand Down
6 changes: 5 additions & 1 deletion examples/MQ-2/MQ-2.ino
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,16 @@ void setup() {

void loop() {
MQ2.update(); // Update data, the arduino will be read the voltaje in the analog pin
/*
//Si el valor de RL es diferente a 10K por favor asigna tu valor de RL con el siguiente metodo:
MQ2.setRL(10);
*/
/*
//Rutina de calibracion - Uncomment if you need (setup too and header)
if(calibration_button)
{
float R0 = MQ2.calibrate();
MQ2.setR0(R0):
MQ2.setR0(R0);
}
*/
/***************************** MQReadSensor ****************************************
Expand Down
6 changes: 5 additions & 1 deletion examples/MQ-3/MQ-3.ino
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,16 @@ void setup() {

void loop() {
MQ3.update(); // Update data, the arduino will be read the voltaje in the analog pin
/*
//Si el valor de RL es diferente a 10K por favor asigna tu valor de RL con el siguiente metodo:
MQ3.setRL(10);
*/
/*
//Rutina de calibracion - Uncomment if you need (setup too and header)
if(calibration_button)
{
float R0 = MQ3.calibrate();
MQ3.setR0(R0):
MQ3.setR0(R0);
}
*/
/***************************** MQReadSensor ****************************************
Expand Down
6 changes: 5 additions & 1 deletion examples/MQ-303A/MQ303.ino
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,16 @@ void setup() {

void loop() {
MQ303.update();
/*
//Si el valor de RL es diferente a 10K por favor asigna tu valor de RL con el siguiente metodo:
MQ303.setRL(10);
*/
/*
//Rutina de calibracion - Uncomment if you need (setup too and header)
if(calibration_button)
{
float R0 = MQ303.calibrate();
MQ303.setR0(R0):
MQ303.setR0(R0);
}
*/
/***************************** MQReadSensor ****************************************
Expand Down
6 changes: 5 additions & 1 deletion examples/MQ-309A/MQ-309.ino
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,16 @@ void setup() {

void loop() {
MQ309.update();
/*
//Si el valor de RL es diferente a 10K por favor asigna tu valor de RL con el siguiente metodo:
MQ309.setRL(10);
*/
/*
//Rutina de calibracion - Uncomment if you need (setup too and header)
if(calibration_button)
{
float R0 = MQ309.calibrate();
MQ309.setR0(R0):
MQ309.setR0(R0);
}
*/
/***************************** MQReadSensor ****************************************
Expand Down
6 changes: 5 additions & 1 deletion examples/MQ-4/MQ-4.ino
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,16 @@ void setup() {

void loop() {
MQ4.update(); // Update data, the arduino will be read the voltaje in the analog pin
/*
//Si el valor de RL es diferente a 10K por favor asigna tu valor de RL con el siguiente metodo:
MQ4.setRL(10);
*/
/*
//Rutina de calibracion - Uncomment if you need (setup too and header)
if(calibration_button)
{
float R0 = MQ4.calibrate();
MQ4.setR0(R0):
MQ4.setR0(R0);
}
*/
/***************************** MQReadSensor ****************************************
Expand Down
6 changes: 5 additions & 1 deletion examples/MQ-5/MQ-5.ino
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,16 @@ void setup() {
void loop() {

MQ5.update(); // Update data, the arduino will be read the voltaje in the analog pin
/*
//Si el valor de RL es diferente a 10K por favor asigna tu valor de RL con el siguiente metodo:
MQ5.setRL(10);
*/
/*
//Rutina de calibracion - Uncomment if you need (setup too and header)
if(calibration_button)
{
float R0 = MQ5.calibrate();
MQ5.setR0(R0):
MQ5.setR0(R0);
}
*/
/***************************** MQReadSensor ****************************************
Expand Down
4 changes: 4 additions & 0 deletions examples/MQ-6/MQ-6.ino
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ void setup() {

void loop() {
MQ6.update(); // Update data, the arduino will be read the voltaje in the analog pin
/*
//Si el valor de RL es diferente a 10K por favor asigna tu valor de RL con el siguiente metodo:
MQ6.setRL(10);
*/
/*
//Rutina de calibracion - Uncomment if you need (setup too and header)
if(calibration_button)
Expand Down
6 changes: 5 additions & 1 deletion examples/MQ-7/MQ-7.ino
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,16 @@ void setup() {

void loop() {
MQ7.update(); // Update data, the arduino will be read the voltaje in the analog pin
/*
//Si el valor de RL es diferente a 10K por favor asigna tu valor de RL con el siguiente metodo:
MQ7.setRL(10);
*/
/*
//Rutina de calibracion - Uncomment if you need (setup too and header)
if(calibration_button)
{
float R0 = MQ7.calibrate();
MQ7.setR0(R0):
MQ7.setR0(R0);
}
*/
/***************************** MQReadSensor ****************************************
Expand Down
6 changes: 5 additions & 1 deletion examples/MQ-8/MQ-8.ino
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,16 @@ void setup() {

void loop() {
MQ8.update(); // Update data, the arduino will be read the voltaje in the analog pin
/*
//Si el valor de RL es diferente a 10K por favor asigna tu valor de RL con el siguiente metodo:
MQ8.setRL(10);
*/
/*
//Rutina de calibracion - Uncomment if you need (setup too and header)
if(calibration_button)
{
float R0 = MQ8.calibrate();
MQ8.setR0(R0):
MQ8.setR0(R0);
}
*/
/***************************** MQReadSensor ****************************************
Expand Down
6 changes: 5 additions & 1 deletion examples/MQ-9/MQ-9.ino
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,16 @@ void setup() {

void loop() {
MQ9.update(); // Update data, the arduino will be read the voltaje in the analog pin
/*
//Si el valor de RL es diferente a 10K por favor asigna tu valor de RL con el siguiente metodo:
MQ9.setRL(10);
*/
/*
//Rutina de calibracion - Uncomment if you need (setup too and header)
if(calibration_button)
{
float R0 = MQ9.calibrate();
MQ9.setR0(R0):
MQ9.setR0(R0);
}
*/
/***************************** MQReadSensor ****************************************
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=MQUnifiedsensor
version=1.0.2
version=1.0.4
author= Miguel Califa <[email protected]>, Yersson Carrillo <[email protected]>, Ghiordy Contreras <[email protected]>
maintainer= Miguel Califa <[email protected]>
sentence= This library allows you to read the MQ sensors very easily.
Expand Down

0 comments on commit 3261318

Please sign in to comment.