Open jonesy2 opened 5 years ago
In Esp8266weather.ino there is a dewpoint calculation double dewPoint(double tempf, double humidity) //Calculate dew Point
I've found the formula in various programs eg https://gist.github.com/Mausy5043/4179a715d616e6ad8a4eababee7e0281
and they all use celcuis as the input variable. I did a test using celcius with an online calculator, plus the formula shown in the SHT11 datasheet.
The input to your code should be celcius. The output is celcius.
Ok i will take a look
Thanks!
In Esp8266weather.ino there is a dewpoint calculation double dewPoint(double tempf, double humidity) //Calculate dew Point
I've found the formula in various programs eg https://gist.github.com/Mausy5043/4179a715d616e6ad8a4eababee7e0281
and they all use celcuis as the input variable. I did a test using celcius with an online calculator, plus the formula shown in the SHT11 datasheet.
The input to your code should be celcius. The output is celcius.