Logo
Developing with ZBOSS for Zigbee
Door Lock Controller

Macros

#define ZB_HA_DEVICE_VER_DOOR_LOCK_CONTROLLER   0
 
#define ZB_HA_DECLARE_DOOR_LOCK_CONTROLLER_CLUSTER_LIST( cluster_list_name, basic_attr_list, identify_attr_list)
 Declare cluster list for Door Lock Controller device. More...
 
#define ZB_HA_DECLARE_DOOR_LOCK_CONTROLLER_EP(ep_name, ep_id, cluster_list)
 Declare endpoint for Door Lock Controller device. More...
 
#define ZB_HA_DECLARE_DOOR_LOCK_CONTROLLER_CTX(device_ctx, ep_name)   ZBOSS_DECLARE_DEVICE_CTX_1_EP(device_ctx, ep_name)
 Declare Door Lock Controller device context. More...
 

Detailed Description

Door Lock Controller device has 5 clusters (see spec 7.4.12):

Door Lock Controller device sample

Example

Macro Definition Documentation

§ ZB_HA_DECLARE_DOOR_LOCK_CONTROLLER_CLUSTER_LIST

#define ZB_HA_DECLARE_DOOR_LOCK_CONTROLLER_CLUSTER_LIST (   cluster_list_name,
  basic_attr_list,
  identify_attr_list 
)

#include </home/developer/.conan/data/ti_zigbee/1.01.00.10/library-lprf/ga/build/f6d18801b7b469a709ae7e8290b03ecdc7a7ad4c/zboss_r23/include/ha/zb_ha_door_lock_controller.h>

Declare cluster list for Door Lock Controller device.

Parameters
cluster_list_name- cluster list variable name
basic_attr_list- attribute list for Basic cluster
identify_attr_list- attribute list for Identify cluster

§ ZB_HA_DECLARE_DOOR_LOCK_CONTROLLER_CTX

#define ZB_HA_DECLARE_DOOR_LOCK_CONTROLLER_CTX (   device_ctx,
  ep_name 
)    ZBOSS_DECLARE_DEVICE_CTX_1_EP(device_ctx, ep_name)

#include </home/developer/.conan/data/ti_zigbee/1.01.00.10/library-lprf/ga/build/f6d18801b7b469a709ae7e8290b03ecdc7a7ad4c/zboss_r23/include/ha/zb_ha_door_lock_controller.h>

Declare Door Lock Controller device context.

Parameters
device_ctx- device context variable name.
ep_name- endpoint definition variable name.

§ ZB_HA_DECLARE_DOOR_LOCK_CONTROLLER_EP

#define ZB_HA_DECLARE_DOOR_LOCK_CONTROLLER_EP (   ep_name,
  ep_id,
  cluster_list 
)

#include </home/developer/.conan/data/ti_zigbee/1.01.00.10/library-lprf/ga/build/f6d18801b7b469a709ae7e8290b03ecdc7a7ad4c/zboss_r23/include/ha/zb_ha_door_lock_controller.h>

Value:
ZB_ZCL_DECLARE_DOOR_LOCK_CONTROLLER_SIMPLE_DESC(ep_name, ep_id, \
ZB_HA_DOOR_LOCK_CONTROLLER_IN_CLUSTER_NUM, ZB_HA_DOOR_LOCK_CONTROLLER_OUT_CLUSTER_NUM); \
ZB_AF_DECLARE_ENDPOINT_DESC(ep_name, ep_id, ZB_AF_HA_PROFILE_ID, 0, NULL, \
ZB_ZCL_ARRAY_SIZE(cluster_list, zb_zcl_cluster_desc_t), cluster_list, \
(zb_af_simple_desc_1_1_t*)&simple_desc_##ep_name, \
0, NULL, 0, NULL)
#define ZB_AF_HA_PROFILE_ID
Definition: zboss_api_af.h:287
ZCL cluster description.
Definition: zb_zcl_common.h:129
Definition: zboss_api_af.h:260

Declare endpoint for Door Lock Controller device.

Parameters
ep_name- endpoint variable name
ep_id- endpoint ID
cluster_list- endpoint cluster list

§ ZB_HA_DEVICE_VER_DOOR_LOCK_CONTROLLER