diff --git a/adafruit_funhouse/peripherals.py b/adafruit_funhouse/peripherals.py index 4618839..ed9bd86 100755 --- a/adafruit_funhouse/peripherals.py +++ b/adafruit_funhouse/peripherals.py @@ -212,21 +212,21 @@ def light(self): @property def temperature(self): """ - Return the temperature + Return the temperature in degrees Celsius """ return self._aht20.temperature @property def relative_humidity(self): """ - Return the relative humidity + Return the relative humidity as a percentage (0 - 100) """ return self._aht20.relative_humidity @property def pressure(self): """ - Return the temperature + Return the barometric pressure in hPa, or equivalently in mBar """ return self._dps310.pressure