Skip to content
Snippets Groups Projects
Unverified Commit eb0d1bb6 authored by Martin's avatar Martin Committed by GitHub
Browse files

Improve knx fan implementation (#46404)

parent fd177441
No related branches found
No related tags found
No related merge requests found
......@@ -35,6 +35,8 @@ class KNXFan(KnxEntity, FanEntity):
if self._device.mode == FanSpeedMode.Step:
self._step_range = (1, device.max_step)
else:
self._step_range = None
async def async_set_percentage(self, percentage: int) -> None:
"""Set the speed of the fan, as a percentage."""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment