From f56f4855d53b1aae6f7fa298b860235774589f19 Mon Sep 17 00:00:00 2001 From: Jan Bouwhuis Date: Thu, 7 Dec 2023 09:36:06 +0100 Subject: [PATCH] Document `target_temperature_step` for climate (#2001) --- docs/core/entity/climate.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/core/entity/climate.md b/docs/core/entity/climate.md index 8cce0295..e3e8ae45 100644 --- a/docs/core/entity/climate.md +++ b/docs/core/entity/climate.md @@ -32,6 +32,7 @@ Properties should always only return information from memory and not do I/O (lik | swing_modes | list[str] | None | **Required by SUPPORT_SWING_MODE** | Returns the list of available swing modes. | | target_humidity | int | None | `None` | The target humidity the device is trying to reach. | | target_temperature | float | None | `None` | The temperature currently set to be reached. | +| target_temperature_step | float | None | `None` | The temperature step to increase or decreate the target temperature. | | target_temperature_high | float | None | **Required by TARGET_TEMPERATURE_RANGE** | The upper bound target temperature | | target_temperature_low | float | None | **Required by TARGET_TEMPERATURE_RANGE** | The lower bound target temperature | | target_temperature_step | float | None | `None` | The supported step size a target temperature can be increased or decreased |