Add preheating HVAC action to climate (#1800)

This commit is contained in:
Franck Nijhof 2023-06-22 00:34:58 +02:00 committed by GitHub
parent baaf1a39c5
commit 3bf3721acb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -59,8 +59,9 @@ enum. If you want another mode, add a preset instead.
The HVAC action describes the _current_ action. This is different from the mode, because if a device is set to heat, and the target temperature is already achieved, the device will not be actively heating anymore. It is only allowed to use the built-in HVAC actions, provided by the `HVACAction` enum. The HVAC action describes the _current_ action. This is different from the mode, because if a device is set to heat, and the target temperature is already achieved, the device will not be actively heating anymore. It is only allowed to use the built-in HVAC actions, provided by the `HVACAction` enum.
| Name | Description | | Name | Description |
| -------------------- | --------------------- | | ----------------------- | --------------------- |
| `HVACAction.OFF` | Device is turned off. | | `HVACAction.OFF` | Device is turned off. |
| `HVACAction.PREHEATING` | Device is preheating. |
| `HVACAction.HEATING` | Device is heating. | | `HVACAction.HEATING` | Device is heating. |
| `HVACAction.COOLING` | Device is cooling. | | `HVACAction.COOLING` | Device is cooling. |
| `HVACAction.DRYING` | Device is drying. | | `HVACAction.DRYING` | Device is drying. |