We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 69acd0b + 1763ad8 commit 160be44Copy full SHA for 160be44
adafruit_funhouse/peripherals.py
@@ -212,21 +212,21 @@ def light(self):
212
@property
213
def temperature(self):
214
"""
215
- Return the temperature
+ Return the temperature in degrees Celsius
216
217
return self._aht20.temperature
218
219
220
def relative_humidity(self):
221
222
- Return the relative humidity
+ Return the relative humidity as a percentage (0 - 100)
223
224
return self._aht20.relative_humidity
225
226
227
def pressure(self):
228
229
+ Return the barometric pressure in hPa, or equivalently in mBar
230
231
return self._dps310.pressure
232
0 commit comments