Stephan Traub

Results 21 comments of Stephan Traub

Unfortunately you can't set the bulb config via UDP packages. The function is available but not used for setting the config.

Yes - I documented all function which are exists on the bulb FW (https://github.com/sbidy/pywizlight#set-functions). But not all of them works as "expected".

Do you test the lib on a HASS? It seems to be that the UDP port is already in use on your system. The discovery test is a "real" test...

Seems to be true. Thank you for the hint. I'll test it and made the change for the next version. P.S.: Don't hesitate to open a PR if you find...

According to the documentation, the `loop` parameter can be removed and should be replaced by `asyncio.run` - https://docs.python.org/3/library/asyncio-task.html#running-an-asyncio-program ```python async def turn_bulbs_on(bulb1, bulb2): await asyncio.gather(bulb1.turn_on(PilotBuilder(warm_white=255)), bulb2.turn_on(PilotBuilder(warm_white=255))) def main: asyncio.run(async turn_bulbs_on(bulb1,...

So the integration doesn't support groups or other enhanced features from the bulb/app. You should create your own rapper around the turn on action. But to be honest, the WiZ...

This should set the correct hue/saturation of the color based on the Wiz App color representation. So, please use your suggested workaround for resting the cw values to get "native"...

The plug is not fully integrated. It will only added as entity not as device. Edit: Please add the bulb with the UI ("Add device"). This will create a device...

The issue should be address with the latest changes in the library behind. The WiZ integration will also be fully integrated as native integration in the next HASS release. This...