Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LIFX: fix multi-zone color restore after effects #9492

Merged
merged 1 commit into from
Sep 19, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions homeassistant/components/light/lifx.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

_LOGGER = logging.getLogger(__name__)

REQUIREMENTS = ['aiolifx==0.5.4', 'aiolifx_effects==0.1.1']
REQUIREMENTS = ['aiolifx==0.6.0', 'aiolifx_effects==0.1.2']

UDP_BROADCAST_PORT = 56700

Expand Down Expand Up @@ -684,8 +684,7 @@ def update_color_zones(self):
# Each get_color_zones can update 8 zones at once
resp = yield from AwaitAioLIFX().wait(partial(
self.device.get_color_zones,
start_index=zone,
end_index=zone+7))
start_index=zone))
if resp:
zone += 8
top = resp.count
4 changes: 2 additions & 2 deletions requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ aiodns==1.1.1
aiohttp_cors==0.5.3

# homeassistant.components.light.lifx
aiolifx==0.5.4
aiolifx==0.6.0

# homeassistant.components.light.lifx
aiolifx_effects==0.1.1
aiolifx_effects==0.1.2

# homeassistant.components.scene.hunterdouglas_powerview
aiopvapi==1.4
Expand Down