mirror of
https://github.com/adafruit/DHT-sensor-library.git
synced 2023-10-23 22:20:38 +03:00
Merge pull request #125 from sijskes/master
fixed incorrect values on DHT11 below 0 degrees celcius
This commit is contained in:
commit
1e752b12ee
9
DHT.cpp
9
DHT.cpp
@ -39,6 +39,15 @@ float DHT::readTemperature(bool S, bool force) {
|
||||
if (read(force)) {
|
||||
switch (_type) {
|
||||
case DHT11:
|
||||
f = data[2];
|
||||
if (data[3] & 0x80) {
|
||||
f = -1 - f ;
|
||||
}
|
||||
f += (data[3] & 0x0f) * 0.1;
|
||||
if(S) {
|
||||
f = convertCtoF(f);
|
||||
}
|
||||
break;
|
||||
case DHT12:
|
||||
f = data[2];
|
||||
f += (data[3] & 0x0f) * 0.1;
|
||||
|
Loading…
Reference in New Issue
Block a user