Skip to content
This repository has been archived by the owner on Mar 8, 2022. It is now read-only.

Commit

Permalink
Bumb to 0.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sbidy committed Feb 3, 2021
1 parent 519d846 commit 5955cc0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions custom_components/wiz_light/light.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
{vol.Required(CONF_HOST): cv.string, vol.Required(CONF_NAME): cv.string}
)

# set poll interval to 15 sec because of changes from external to the bulb
# set poll interval to 30 sec because of changes from external to the bulb
SCAN_INTERVAL = timedelta(seconds=15)


Expand Down Expand Up @@ -172,7 +172,9 @@ async def async_turn_on(self, **kwargs):
colortemp,
sceneid,
)
await self._light.turn_on(pilot)
await self._light.turn_on(
pilot,
)

async def async_turn_off(self, **kwargs):
"""Instruct the light to turn off."""
Expand Down
2 changes: 1 addition & 1 deletion custom_components/wiz_light/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"config_flow": true,
"documentation": "https://www.home-assistant.io/integrations/wiz_light",
"requirements": [
"pywizlight==0.4.3"
"pywizlight==0.4.4"
],
"ssdp": [],
"zeroconf": [],
Expand Down

0 comments on commit 5955cc0

Please sign in to comment.