3 Commits
1.3.4 ... 1.3.5

Author SHA1 Message Date
f76a51243f Update library.properties 2019-07-04 12:16:01 +02:00
8e0a94fff3 Merge pull request #130 from matthiasdanner/master
removed double conversion to Celsius
2019-04-17 20:05:17 -07:00
6332774b18 removed double conversion to Celsius 2019-04-17 20:01:26 +02:00
2 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ float DHT::readHumidity(bool force) {
float DHT::computeHeatIndex(bool isFahrenheit) {
float hi = computeHeatIndex(readTemperature(isFahrenheit), readHumidity(),
isFahrenheit);
return isFahrenheit ? hi : convertFtoC(hi);
return hi;
}
//boolean isFahrenheit: True == Fahrenheit; False == Celcius

View File

@ -1,5 +1,5 @@
name=DHT sensor library
version=1.3.4
version=1.3.5
author=Adafruit
maintainer=Adafruit <info@adafruit.com>
sentence=Arduino library for DHT11, DHT22, etc Temp & Humidity Sensors