Add current_humidity attribute to humidifier entity (#1807)

This commit is contained in:
Denis Shulyaka 2023-06-20 10:43:52 +03:00 committed by GitHub
parent 6d3f0204d3
commit 3b02b3bb8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,6 +14,7 @@ Properties should always only return information from memory and not do I/O (lik
| Name | Type | Default | Description |
| ----------------------- | ------ | ------------------------------------------------- | ----------------------------------------------------------------------------------------- |
| target_humidity | int | `None` | The target humidity the device is trying to reach. |
| current_humidity | int | `None` | The current humidity measured by the device. |
| max_humidity | int | `DEFAULT_MAX_HUMIDITY` (value == 100) | Returns the maximum humidity. |
| min_humidity | int | `DEFAULT_MIN_HUMIDITY` (value == 0) | Returns the minimum humidity. |
| mode | string | `NotImplementedError()` | The current active preset. Requires `SUPPORT_MODES`. |