From a10847bef34b7e4005fb572ebb25a0ffe392e4c0 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sun, 27 Jun 2021 08:35:58 -1000 Subject: [PATCH] Fix isy994 fan when turn on is not called with a percentage (#49531) * Fix isy994 fan when turn on is not called with a percentage * Make insteon/fan.py logic --- homeassistant/components/isy994/fan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/isy994/fan.py b/homeassistant/components/isy994/fan.py index 73b5bd683ba..f9f3c6e5459 100644 --- a/homeassistant/components/isy994/fan.py +++ b/homeassistant/components/isy994/fan.py @@ -83,7 +83,7 @@ class ISYFanEntity(ISYNodeEntity, FanEntity): **kwargs, ) -> None: """Send the turn on command to the ISY994 fan device.""" - await self.async_set_percentage(percentage) + await self.async_set_percentage(percentage or 67) async def async_turn_off(self, **kwargs) -> None: """Send the turn off command to the ISY994 fan device."""