diff --git a/homeassistant/components/insteon_hub.py b/homeassistant/components/insteon_hub.py index 906f15b6c3f..9d77a0fc5c3 100644 --- a/homeassistant/components/insteon_hub.py +++ b/homeassistant/components/insteon_hub.py @@ -33,6 +33,10 @@ def setup(hass, config): This will automatically import associated lights. """ + _LOGGER.warning('Component disabled at request from Insteon. ' + 'For more information: https://goo.gl/zLJaic') + return False + # pylint: disable=unreachable import insteon username = config[DOMAIN][CONF_USERNAME] diff --git a/homeassistant/components/light/insteon_hub.py b/homeassistant/components/light/insteon_hub.py index 70beadb6c1d..6f547b5f92a 100644 --- a/homeassistant/components/light/insteon_hub.py +++ b/homeassistant/components/light/insteon_hub.py @@ -8,6 +8,8 @@ from homeassistant.components.insteon_hub import INSTEON from homeassistant.components.light import (ATTR_BRIGHTNESS, SUPPORT_BRIGHTNESS, Light) +DEPENDENCIES = ['insteon_hub'] + SUPPORT_INSTEON_HUB = SUPPORT_BRIGHTNESS