From ef63ef3f416c3dcfca01faf25965ccf367815f0d Mon Sep 17 00:00:00 2001 From: Kurt Riede Date: Tue, 17 Sep 2024 22:01:03 +0200 Subject: [PATCH] Correct climate set_fan_mode example (#34773) The example with "On Low" as mode generates this error: `Fan mode On Low is not valid. Valid fan modes are: on, low, medium, high` A correct value must be all lower case and one of: on, low, medium, high --- source/_integrations/climate.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_integrations/climate.markdown b/source/_integrations/climate.markdown index dedf0736785..7d8d69034eb 100644 --- a/source/_integrations/climate.markdown +++ b/source/_integrations/climate.markdown @@ -177,7 +177,7 @@ automation: target: entity_id: climate.kitchen data: - fan_mode: "On Low" + fan_mode: "low" ``` ### Action `climate.set_hvac_mode`