Update example to show temp in Fahrenheit and add computeHeatIndex function to resolve issue #9.

This commit is contained in:
Tony DiCola
2014-06-02 12:54:54 -07:00
parent 633eb08654
commit ffac2f15b7
3 changed files with 28 additions and 1 deletions

1
DHT.h
View File

@@ -33,6 +33,7 @@ class DHT {
void begin(void);
float readTemperature(bool S=false);
float convertCtoF(float);
float computeHeatIndex(float tempFahrenheit, float percentHumidity);
float readHumidity(void);
};