mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 19:27:45 +00:00
Adjust insteon fan speed range to valid upper bound (#47765)
This commit is contained in:
parent
9ca0cd5464
commit
e2f0b18427
@ -17,7 +17,7 @@ from .const import SIGNAL_ADD_ENTITIES
|
||||
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):
|
||||
|
Loading…
x
Reference in New Issue
Block a user