From 885b08c24745f3ae61aad726bfacb4caba9aacbc Mon Sep 17 00:00:00 2001 From: Shane Donohoe <1909963+shanedabes@users.noreply.github.com> Date: Thu, 1 Apr 2021 11:15:51 +0100 Subject: [PATCH] Include "big" high fan setting (#413) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Asakuki diffuser has its speed setting under the 103 DPS and uses "big" for its high setting. Co-authored-by: Pierre Ståhl --- custom_components/localtuya/fan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/localtuya/fan.py b/custom_components/localtuya/fan.py index b45567e..834e199 100644 --- a/custom_components/localtuya/fan.py +++ b/custom_components/localtuya/fan.py @@ -38,7 +38,7 @@ def flow_schema(dps): [SPEED_MEDIUM, "mid", "2", "3"] ), vol.Optional(CONF_FAN_SPEED_HIGH, default=SPEED_HIGH): vol.In( - [SPEED_HIGH, "auto", "3", "4", "large"] + [SPEED_HIGH, "auto", "3", "4", "large", "big"] ), }