From 3bf3721acb576bfd7b4dfcddbc9d95ccf58bc5d9 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Thu, 22 Jun 2023 00:34:58 +0200 Subject: [PATCH] Add preheating HVAC action to climate (#1800) --- docs/core/entity/climate.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/docs/core/entity/climate.md b/docs/core/entity/climate.md index 0499130a..c9ceedb7 100644 --- a/docs/core/entity/climate.md +++ b/docs/core/entity/climate.md @@ -58,14 +58,15 @@ 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. -| Name | Description | -| -------------------- | --------------------- | -| `HVACAction.OFF` | Device is turned off. | -| `HVACAction.HEATING` | Device is heating. | -| `HVACAction.COOLING` | Device is cooling. | -| `HVACAction.DRYING` | Device is drying. | -| `HVACAction.FAN` | Device has fan on. | -| `HVACAction.IDLE` | Device is idle. | +| Name | Description | +| ----------------------- | --------------------- | +| `HVACAction.OFF` | Device is turned off. | +| `HVACAction.PREHEATING` | Device is preheating. | +| `HVACAction.HEATING` | Device is heating. | +| `HVACAction.COOLING` | Device is cooling. | +| `HVACAction.DRYING` | Device is drying. | +| `HVACAction.FAN` | Device has fan on. | +| `HVACAction.IDLE` | Device is idle. | ### Presets