Closed milan-de closed 7 years ago
IMHO that is not a functionality of this sensor so it should not be part of the library either. There are thoughts about another library, maybe this code snippets helps you
`#include
double calculationAbsHum(float t, float h) { double temp; temp = pow(2.718281828, (17.67 t) / (t + 243.5)); return (6.112 temp h 2.1674) / (273.15 + t); } String(calculationAbsHum(temperature, humidity)) + " g/m3");`
Thanks, is there any scientific reference on the Internet where this approximation is listed ?
Thanks!
Hi all,
as I am new to arduino and BME280 world I am not sure if my question I should ask under "Issues" or somwhere else, but in case I am on right place my question would be how to retrieve absolute humidity using this BME280 ? In library "finitespace/BME280" is mention only relative humidity, right ? Thanks!
cheers, Milan