Fix mqtt fan speed range min and max config descriptions (#39183)

This commit is contained in:
Jan Bouwhuis 2025-05-25 18:56:21 +02:00 committed by GitHub
parent 90210faf9b
commit 77d8865a0b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -294,12 +294,12 @@ retain:
type: boolean type: boolean
default: true default: true
speed_range_max: speed_range_max:
description: The maximum of numeric output range (representing 100 %). The number of speeds within the `speed_range` / `100` will determine the `percentage_step`. description: The maximum of numeric output range (representing 100 %). The `percentage_step` is defined by `100` / the number of speeds within the speed range.
required: false required: false
type: integer type: integer
default: 100 default: 100
speed_range_min: speed_range_min:
description: The minimum of numeric output range (`off` not included, so `speed_range_min` - `1` represents 0 %). The number of speeds within the speed_range / 100 will determine the `percentage_step`. description: The minimum of numeric output range (`off` not included, so `speed_range_min` - `1` represents 0 %). The `percentage_step` is defined by `100` / the number of speeds within the speed range.
required: false required: false
type: integer type: integer
default: 1 default: 1