Replies: 1 comment 1 reply
-
@pablopoo Start by opening a new issue with "Device support request" -> https://github.com/zigpy/zha-device-handlers/issues There you provide the requested device signature, diagnostic information, logs, etc. which makes it easier for others to answer and help. PS: This is in ZHA docs -> https://www.home-assistant.io/integrations/zha#how-to-add-support-for-new-and-unsupported-devices |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, I'm trying to connect a netvox Z311A contact sensor. So far the battery level is working but the contact sensor not.
looking on the Zone Status Change Notification Payload on the device documentation I see that is not following the standard:
This is the notification payload standard:

and this is the device payload:

For what I understand, the device is not sending the zone Id and delay as separated payload parameters, and instead send the zone id inside the extended status parameter.
Should I do something like this?
manufacturer_client_commands = { 0x0000: ( "status_change_notification", ( IasZone.ZoneStatus, t.bitmap8, t.Optional(t.uint8_t), t.Optional(t.uint16_t), ), False, ) }
I'm new to this, any hints will be appreciated. Thanks!
Beta Was this translation helpful? Give feedback.
All reactions