luar123
luar123
`on_update_callback_func()` which can be set with `set_on_update_callback()` is called whenever a Server.OnUpdate notification is received: ``` def _on_server_update(self, data): """Handle server update.""" self.synchronize(data) if self._on_update_callback_func and callable(self._on_update_callback_func): self._on_update_callback_func() ``` Check...
It definitely makes sense to use the client method, although theoretically, it shouldn't have an influence on client callbacks.
This would be a great improvement. Is there something blocking from merging?
> > https://github.com/luar123/zigbee_esphome/ > > I've seen that. You can do more with it. It seems to be lower level implementation since it requires defining clusters in yaml. My goal...
> That was my idea too at the beginning. How would you like to do so? I can see two possibilities: > 1. use ZCL which is standardized but not...
Logger fix is not included in 2024.03.1
Wow great, that looks like a lot of work. Some parts are very similar to my not yet published external ZigBee component (I need to fix a few issues before...
Sounds good! I hope I will be able to publish my first version of the external component in the next weeks, maybe this could help you. It will be a...
@lxz946786639: https://github.com/luar123/zigbee_esphome @Muk911, I didn't re-use any of your work as I had most already working. But I could see a merge of both projects if you would like to...
Just tried it here: * I think `no sync task created` is normal at startup because `init_player()` calls `deinit_player()` first. * Check your port config. I got similar errors initially...