Updated examples, added new method explanation

This commit is contained in:
miguel califa
2019-09-28 11:18:28 -05:00
parent 0f912a3c4a
commit ff002f9993
12 changed files with 58 additions and 10 deletions

View File

@ -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 ****************************************