Skip to content

Commit

Permalink
Adjust insteon fan speed range to valid upper bound (#47765)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco authored and balloob committed Mar 12, 2021
1 parent 726eb69 commit 8133680
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/components/insteon/fan.py
Expand Up @@ -17,7 +17,7 @@
from .insteon_entity import InsteonEntity
from .utils import async_add_insteon_entities

SPEED_RANGE = (0x00, 0xFF) # off is not included
SPEED_RANGE = (1, 255) # off is not included


async def async_setup_entry(hass, config_entry, async_add_entities):
Expand Down

0 comments on commit 8133680

Please sign in to comment.