Adjust insteon fan speed range to valid upper bound (#47765)

This commit is contained in:
J. Nick Koston 2021-03-11 19:35:24 -10:00 committed by Paulus Schoutsen
parent 726eb69b40
commit 81336809e8

View File

@ -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):