Configure Zigbee device parameters likewise with zwave

Hello community, this is the first question with regards to zigbee and homeassistant. We have successfully enabled ZHA as integration for zigbee. We are experienced with Zwave (ozw, zavejs, zwavejs2mqqt, etc.) where we can “set” configuration parameters like blind time, reset time, sensitivity, etc.

Where and how can these be configured for zigbee sensors/devices via the ZHA integration?

And if not possible is it possible at all to configure these parameters with zigbee?

Thank you in advance for your support.

1 Like

Reply to self. Is there anything wrong in posting this question or is it just too hard or not possible?

Hope to get some answer/support on this question. Thank you.

I’m trying to do this myself.
There is some information in another thread, but I’ve not been able to get it working

I’ve tried the following data with cluster command

{
“ieee”:“00:15:bc:00:1a:01:2c:18”
“endpoint_id”:10
“cluster_id”:1030
“cluster_type”:“Uint16”
“command”:0
“args”: “60”
}

But it gives error, also tried hex values on the ID, no help.

Also tried yaml, but it’s been so long

service: zha.issue_zigbee_cluster_command
data:
  “ieee”:“00:15:bc:00:1a:01:2c:18” 
  “endpoint_id”:10
  “cluster_id”:1030
  “cluster_type”:“Uint16”
  “command”:0
  “args”: “60”

Kunne ikke tilkalle tjenesten: zha/issue_zigbee_cluster_command expected dict for dictionary value @ data['service_data']. Got '“ieee”:“00:15:bc:00:1a:01:2c:18” “endpoint_id”:10 “cluster_id”:1030 “cluster_type”:“Uint16” “command”:0'

It seems this is closer

service: zha.issue_zigbee_cluster_command
data:
  ieee: '00:15:bc:00:1a:01:2c:18'
  endpoint_id: 0x0010
  cluster_id: 0x0406
  cluster_type: Uint16
  command_type: client
  command: 0
  args:
    - 60

But it also gives error

Kunne ikke tilkalle tjenesten: zha/issue_zigbee_cluster_command 16

Oh, I just found the GUI to change these settings.

go into device info, there there is cluster management.

3 Likes

Thank you so much for this. I was banging my head against the wall trying to find these configuration settings. Home Assistant really needs to prioritize updating and improving their documentation.