core/homeassistant/components/switch/qwikswitch.py

25 lines
646 B
Python
Raw Normal View History

"""
Support for Qwikswitch relays.
For more details about this platform, please refer to the documentation at
https://home-assistant.io/components/switch.qwikswitch/
"""
import logging
2017-01-17 22:40:34 +00:00
import homeassistant.components.qwikswitch as qwikswitch
2017-01-17 22:40:34 +00:00
_LOGGER = logging.getLogger(__name__)
DEPENDENCIES = ['qwikswitch']
# pylint: disable=unused-argument
def setup_platform(hass, config, add_devices, discovery_info=None):
"""Add switched from the main Qwikswitch component."""
if discovery_info is None:
2017-01-17 22:40:34 +00:00
_LOGGER.error("Configure Qwikswitch component")
return False
add_devices(qwikswitch.QSUSB['switch'])
return True