Jc2k
Jc2k
E.g. https://www.reddit.com/r/homebridge/comments/ccco92/comment/etmh4xr
It's a difficult one. In HA: 1. Originally it was polling using the `list_accessories_and_characteristics` API. Which meant that it didn't work for BLE at all, and even if we made...
Yes I agree, I think I overcomplicated what I was trying to say. I certainly don't plan on caching `list_accessories_and_characteristics` values like temperatures or positions or on/off states. What I...
Yep, can confirm it's working a treat! Thanks a lot! Hadn't even noticed the timeout option on `wait()`, that makes things quite a lot nicer (i was having to call...
> An extra question: should the debounce stream yield the last cached item before closing? In other terms, should we add the guarantee that the last produced item is always...
I've tried it on a larger dataset and with a smaller delay and I think i've found a corner case. I'm hitting the `assert pending`. The only explanation I have...
I hit this recently. Imo, I think it's probably more likely to be a problem when you are refactoring existing code. In my case I had implemented the chainable/builder style...
The chaining pattern I had going was pre-aiostreams, I hadn't thought about applying it to aiostream - I actually like the pipe stuff (though i wish i could make the...
HA integrations in core have to push some of their logic for talking to a device to a library on pypi. So what you'll probably find is stuff like [this](https://github.com/home-assistant/core/blob/b1497b08579e3a35cd3a478418adb200633cc8cd/homeassistant/components/switchbot/__init__.py#L76)...
Have you tried using `network_mode="host"` instead of `network="host"`? Note that I only use this with docker networks myself (so i can use pytest-xdist safely), so you are kinda on your...