core/homeassistant/components/switch/wink.py

25 lines
776 B
Python
Raw Normal View History

""" Support for WeMo switchces. """
import logging
# pylint: disable=no-name-in-module, import-error
import homeassistant.external.wink.pywink as pywink
2015-01-16 05:25:24 +00:00
from homeassistant.components.wink import WinkToggleDevice
from homeassistant.const import CONF_ACCESS_TOKEN
2015-03-01 09:35:58 +00:00
def setup_platform(hass, config, add_devices, discovery_info=None):
""" Sets up the Wink platform. """
if discovery_info is None:
token = config.get(CONF_ACCESS_TOKEN)
2015-03-01 09:35:58 +00:00
if token is None:
logging.getLogger(__name__).error(
"Missing wink access_token - "
"get one at https://winkbearertoken.appspot.com/")
return
2015-03-01 09:35:58 +00:00
pywink.set_bearer_token(token)
2015-03-01 09:35:58 +00:00
add_devices(WinkToggleDevice(switch) for switch in pywink.get_switches())