This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

ID of Window Covering Device wrong

Hi,

I'm using the Home Automation profile of the Zigbee protocol and, in particular, I'm developing the Window Covering Device, present in the SDK "nRF5_SDK_for_Thread_and_Zigbee_v3.1.0": from specification (as shown in the photo) the ID corresponding to this device is 0x0202 while, in the file zb_ha_device_config.h, I see that it has this ID: 0x0060.

Was it an oversight or is it a choice made by you?


Best regards,

Raffaela

Parents
  • Hello Raffaela,

    According to the ZCL specification, the identifier of the window covering cluster is 0x0102 (0x0202 may be a typo). You can find this in zb_zcl_common.h on line 175:

    ZB_ZCL_CLUSTER_ID_WINDOW_COVERING = 0x0102,       /**< Window covering cluster identifier. */

    I am not sure what exactly the

    ZB_HA_WINDOW_COVERING_DEVICE_ID     = 0x0060,

    is used for. I believe it is some internal IDs for the SDK. 

    Best regards,

    Edvin

Reply
  • Hello Raffaela,

    According to the ZCL specification, the identifier of the window covering cluster is 0x0102 (0x0202 may be a typo). You can find this in zb_zcl_common.h on line 175:

    ZB_ZCL_CLUSTER_ID_WINDOW_COVERING = 0x0102,       /**< Window covering cluster identifier. */

    I am not sure what exactly the

    ZB_HA_WINDOW_COVERING_DEVICE_ID     = 0x0060,

    is used for. I believe it is some internal IDs for the SDK. 

    Best regards,

    Edvin

Children
Related