From 2f668c480e95a8d74dac822f699e7a100d96a60d Mon Sep 17 00:00:00 2001 From: fiva Date: Sun, 6 Dec 2020 22:19:19 +0100 Subject: [PATCH] order speed list of fans --- custom_components/nhc2/fan.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/nhc2/fan.py b/custom_components/nhc2/fan.py index 47f3b354..d1f9c7dc 100644 --- a/custom_components/nhc2/fan.py +++ b/custom_components/nhc2/fan.py @@ -76,9 +76,9 @@ def speed(self) -> str: @property def speed_list(self) -> list: """Get the list of available speeds.""" - return [SPEED_HIGH, - SPEED_LOW, + return [SPEED_LOW, SPEED_MEDIUM, + SPEED_HIGH, SPEED_BOOST] @property