We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f566d58 commit 6332774Copy full SHA for 6332774
DHT.cpp
@@ -107,7 +107,7 @@ float DHT::readHumidity(bool force) {
107
float DHT::computeHeatIndex(bool isFahrenheit) {
108
float hi = computeHeatIndex(readTemperature(isFahrenheit), readHumidity(),
109
isFahrenheit);
110
- return isFahrenheit ? hi : convertFtoC(hi);
+ return hi;
111
}
112
113
//boolean isFahrenheit: True == Fahrenheit; False == Celcius
0 commit comments