From 77d8865a0b6442a16d1e6765f70b602ddd30bce5 Mon Sep 17 00:00:00 2001 From: Jan Bouwhuis Date: Sun, 25 May 2025 18:56:21 +0200 Subject: [PATCH] Fix mqtt fan speed range min and max config descriptions (#39183) --- source/_integrations/fan.mqtt.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_integrations/fan.mqtt.markdown b/source/_integrations/fan.mqtt.markdown index 29b117987ca..5cb84cbcd0a 100644 --- a/source/_integrations/fan.mqtt.markdown +++ b/source/_integrations/fan.mqtt.markdown @@ -294,12 +294,12 @@ retain: type: boolean default: true 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 type: integer default: 100 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 type: integer default: 1