-
I have some Namron plug-in relays that act as switches and report power draw and total consumption. I would like to somehow avoid reporting of these values, so that I can avoid needing to filter them everywhere I use them. Do I need a quirk for this, or is there a simpler way I just don't know about? IMHO the manufacturer should have done some more work to avoid this issue in the first place, but here we are. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I understand that should or will be possible with the new "Quirks V2" (ZHA Device Handlers version 2) architectural design, more info here -> https://community.home-assistant.io/t/zha-device-handlers-version-2-zha-quirks-v2-architectural-design-developer-discussion/666460 FYI, ZHA/zigpy developers have introduced initial support for what they call ”Quirks V2” (or Z"HA-Quirks V2") and dmulcahey has begun documentation for easier quirk development in zha-device-handlers (zha-quirks) using the ”Quirks V2” specification here -> #3019
Yes you probably have to change multiplier and/or divider in the respective ZHA Device Handler quirk in this “ZHA Device Handlers" (zha-quirks) repository, so regardless if you go with the "Quirks V1" or new "Quirks V2" specification, do open a new "Device support request" issue with device signature + diagnostic information if you can not find an already existing issue for your specific device signature. See -> https://github.com/zigpy/zha-device-handlers/issues and if can not find existing issues for the same device signasure then open a "device support request" as a new issue -> https://github.com/zigpy/zha-device-handlers/issues/new/choose PS: Sound like you are already aware of this but FYI, the usual reason why quirks are needed is normally due to firmware reporting non-standard values, see -> https://www.home-assistant.io/integrations/zha#how-to-add-support-for-new-and-unsupported-devices |
Beta Was this translation helpful? Give feedback.
I understand that should or will be possible with the new "Quirks V2" (ZHA Device Handlers version 2) architectural design, more info here -> https://community.home-assistant.io/t/zha-device-handlers-version-2-zha-quirks-v2-architectural-design-developer-discussion/666460
FYI, ZHA/zigpy developers have introduced initial support for what they call ”Quirks V2” (or Z"HA-Quirks V2") and dmulcahey has begun documentation for easier quirk development in zha-device-handlers (zha-q…