kdkavanagh

Results 37 comments of kdkavanagh

As well as these other settings: ``` "python.analysis.autoImportCompletions": true, "python.analysis.userFileIndexingLimit": -1, "python.analysis.persistAllIndices": true, ```

Anyone come up with an implementation/workaround for this? Very interested as well

The websocket API seemed to require some unique handshake process to fully connect. Beyond that, the two methods seemed functionally similar and I didnt need any time-sensitive push updates into...

+1 re: the merge question. In the meantime, I've been using a local install of this plugin+the HA integration I wrote. I can probably get those HA changes cleaned up...

Did you ever find a solution for this? Hitting a similar issue

Ah I see there's already good debug logging, just need to enable it. Guessing that my Adaptive Lighting configs are interfering with the light after scene activate. Will close for...

Okay while the adaptive lighting integration was indeed messing with things (fixed by setting adaptive lighting setting `adapt_only_bare_turn_on`), there still seems to be an issue with entities that handle `scene.activate`...

More testing reveals option 1 wont solve the issue. Seeing cases where the first transition is to the correct state, followed by one to `brightness: 1` before a final update...

The debounce idea seems to work... Basically added a `asyncio.sleep(0.2)` to the event handler callback before the `schedule_state()` call, ignoring the event payload completely. Then, in the `switch.update` method, requery...