Python wink update (#15048)

* Updated python-wink to 1.9.0

* Added support for groups of Wink shades.
This commit is contained in:
William Scanlon 2018-06-20 09:41:28 -04:00 committed by Paulus Schoutsen
parent 75580dfade
commit 6bc03ee763
3 changed files with 6 additions and 2 deletions

View file

@ -21,6 +21,10 @@ def setup_platform(hass, config, add_devices, discovery_info=None):
_id = shade.object_id() + shade.name()
if _id not in hass.data[DOMAIN]['unique_ids']:
add_devices([WinkCoverDevice(shade, hass)])
for shade in pywink.get_shade_groups():
_id = shade.object_id() + shade.name()
if _id not in hass.data[DOMAIN]['unique_ids']:
add_devices([WinkCoverDevice(shade, hass)])
for door in pywink.get_garage_doors():
_id = door.object_id() + door.name()
if _id not in hass.data[DOMAIN]['unique_ids']: