Fix formula in getResistance(): 5.0 is unnecessary here

This commit is contained in:
Dmitry Frolov 2015-07-08 19:06:07 +06:00
parent a9c0e645e9
commit 88e1e8abc2
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ float MQ135::getCorrectionFactor(float t, float h) {
/**************************************************************************/ /**************************************************************************/
float MQ135::getResistance() { float MQ135::getResistance() {
int val = analogRead(_pin); int val = analogRead(_pin);
return ((1023./(float)val) * 5. - 1.)*RLOAD; return ((1023./(float)val) - 1.)*RLOAD;
} }
/**************************************************************************/ /**************************************************************************/