MCPcopy Create free account
hub / github.com/RobTillaart/Arduino / getHumidity

Method getHumidity

libraries/SHT85/SHT85.h:96–96  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

94
95
96 float getHumidity() { return _rawHumidity * (100.0 / 65535); };
97 float getTemperature() { return _rawTemperature * (175.0 / 65535) - 45; };
98 float getFahrenheit() { return _rawTemperature * (63.0 /13107.0) - 49; };
99 uint16_t getRawHumidity() { return _rawHumidity; };

Callers 1

unittestFunction · 0.45

Calls

no outgoing calls

Tested by 1

unittestFunction · 0.36