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
This commit is contained in:
parent
120fd633b2
commit
a10847bef3
1 changed files with 1 additions and 1 deletions
|
@ -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."""
|
||||
|
|
Loading…
Add table
Reference in a new issue