mirror of
https://github.com/adafruit/DHT-sensor-library.git
synced 2025-09-28 13:50:54 +02:00
This commit is contained in:
2
DHT.cpp
2
DHT.cpp
@@ -46,7 +46,6 @@ float DHT::readTemperature(bool S) {
|
|||||||
return f;
|
return f;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Serial.print("Read fail");
|
|
||||||
return NAN;
|
return NAN;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -70,7 +69,6 @@ float DHT::readHumidity(void) {
|
|||||||
return f;
|
return f;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Serial.print("Read fail");
|
|
||||||
return NAN;
|
return NAN;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -32,14 +32,17 @@ void loop() {
|
|||||||
float t = dht.readTemperature();
|
float t = dht.readTemperature();
|
||||||
// Read temperature as Fahrenheit
|
// Read temperature as Fahrenheit
|
||||||
float f = dht.readTemperature(true);
|
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
|
// Compute heat index
|
||||||
// Must send in temp in Fahrenheit!
|
// Must send in temp in Fahrenheit!
|
||||||
float hi = dht.computeHeatIndex(f, h);
|
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("Humidity: ");
|
||||||
Serial.print(h);
|
Serial.print(h);
|
||||||
Serial.print(" %\t");
|
Serial.print(" %\t");
|
||||||
@@ -51,6 +54,4 @@ void loop() {
|
|||||||
Serial.print("Heat index: ");
|
Serial.print("Heat index: ");
|
||||||
Serial.print(hi);
|
Serial.print(hi);
|
||||||
Serial.println(" *F");
|
Serial.println(" *F");
|
||||||
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user