puddly
puddly
Can you attach more of the debug log? Preferably, reload the integration and then retry the update by checking for updates manually in Core, it'll send a notification to the...
Your OTA image metadata has `min_current_file_version=33620479` but the device is reaching out with `current_file_version=17106430`. This means the device firmware is too old, the image cannot be installed.
@Hedda That's not the case here. The OTA image metadata explicitly has `min_current_file_version`, which most OTA files do not provide. This tells Zigpy to not apply the OTA image unless...
Can you attach the complete logs from both radio libraries and a packet capture, if possible? The two logs are saying very different things. ```python $ pip install zigpy-cli $...
Thanks! So the destination endpoint is 0 in both cases. This really isn't a supported configuration and I think very much against what the spec allows. Endpoint 0 is only...
The reason we can't easily work around this is because Z-Stack firmware intercepts and rewrites almost all ZDO commands. There is a global `ZDO.MsgCbIncoming` callback that we can subscribe to...
CC @TheJulianJES. Do you have any suggestions for quirks APIs to support this use case (if it isn't already)?
If the device doesn't react when the button is released, could you explain how this PR fixes this? From what I understand, the entity will update only when the underlying...
You can use something like this once https://github.com/zigpy/zigpy/pull/1721 is merged: ```python QuirkBuilder() .applies_to(...) .change_entity_metadata(cluster_id=FormaldehydeConcentration.cluster_id, new_suggested_display_precision=2) ```
Can you use ZHA Toolkit to fully scan the device? ([HACS link](https://my.home-assistant.io/redirect/hacs_repository/?owner=mdeweerd&repository=zha-toolkit&category=integration), add `zha_toolkit:` to your `configuration.yaml` once done and restart Core) ```yaml service: zha_toolkit.scan_device data: ieee: "00:12:4b:00:22:08:ed:1a" # you...