mirror of
https://github.com/adafruit/DHT-sensor-library.git
synced 2023-10-23 22:20:38 +03:00
This commit is contained in:
parent
ffac2f15b7
commit
ce05c3536c
2
DHT.cpp
2
DHT.cpp
@ -46,7 +46,6 @@ float DHT::readTemperature(bool S) {
|
||||
return f;
|
||||
}
|
||||
}
|
||||
Serial.print("Read fail");
|
||||
return NAN;
|
||||
}
|
||||
|
||||
@ -70,7 +69,6 @@ float DHT::readHumidity(void) {
|
||||
return f;
|
||||
}
|
||||
}
|
||||
Serial.print("Read fail");
|
||||
return NAN;
|
||||
}
|
||||
|
||||
|
@ -32,25 +32,26 @@ void loop() {
|
||||
float t = dht.readTemperature();
|
||||
// Read temperature as Fahrenheit
|
||||
float f = dht.readTemperature(true);
|
||||
|
||||
// Check if any reads failed and exit early (to try again).
|
||||
if (isnan(h) || isnan(t) || isnan(f)) {
|
||||
Serial.println("Failed to read from DHT sensor!");
|
||||
return;
|
||||
}
|
||||
|
||||
// Compute heat index
|
||||
// Must send in temp in Fahrenheit!
|
||||
float hi = dht.computeHeatIndex(f, h);
|
||||
|
||||
// check if returns are valid, if they are NaN (not a number) then something went wrong!
|
||||
if (isnan(t) || isnan(h)) {
|
||||
Serial.println("Failed to read from DHT");
|
||||
} else {
|
||||
Serial.print("Humidity: ");
|
||||
Serial.print(h);
|
||||
Serial.print(" %\t");
|
||||
Serial.print("Temperature: ");
|
||||
Serial.print(t);
|
||||
Serial.print(" *C ");
|
||||
Serial.print(f);
|
||||
Serial.print(" *F\t");
|
||||
Serial.print("Heat index: ");
|
||||
Serial.print(hi);
|
||||
Serial.println(" *F");
|
||||
|
||||
}
|
||||
Serial.print("Humidity: ");
|
||||
Serial.print(h);
|
||||
Serial.print(" %\t");
|
||||
Serial.print("Temperature: ");
|
||||
Serial.print(t);
|
||||
Serial.print(" *C ");
|
||||
Serial.print(f);
|
||||
Serial.print(" *F\t");
|
||||
Serial.print("Heat index: ");
|
||||
Serial.print(hi);
|
||||
Serial.println(" *F");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user