19 lines
669 B
Python
19 lines
669 B
Python
"""
|
|
Support for Insteon Hub lights.
|
|
|
|
For more details about this platform, please refer to the documentation at
|
|
https://home-assistant.io/components/insteon_hub/
|
|
"""
|
|
from homeassistant.components.insteon_hub import INSTEON, InsteonToggleDevice
|
|
|
|
|
|
def setup_platform(hass, config, add_devices, discovery_info=None):
|
|
"""Setup the Insteon Hub light platform."""
|
|
devs = []
|
|
for device in INSTEON.devices:
|
|
if device.DeviceCategory == "Switched Lighting Control":
|
|
devs.append(InsteonToggleDevice(device))
|
|
if device.DeviceCategory == "Dimmable Lighting Control":
|
|
devs.append(InsteonToggleDevice(device))
|
|
add_devices(devs)
|