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
This commit is contained in:
Kurt Riede 2024-09-17 22:01:03 +02:00 committed by GitHub
parent 3efc2b239c
commit ef63ef3f41
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -177,7 +177,7 @@ automation:
target:
entity_id: climate.kitchen
data:
fan_mode: "On Low"
fan_mode: "low"
```
### Action `climate.set_hvac_mode`