摘要:
refer to ZigBee_Cluster_Library_Public_download_version1.zcl 分为几个不同的功能领域,每个领域霸占一部分clusterid比如通用领域有如下的clusterid........在协议栈的zcl.h中有对这些clusterid定义,对应上面的文档,但是不完整// General Clusters
#define ZCL_CLUSTER_ID_GEN_BASIC 0x0000
#define ZCL_CLUSTER_ID_GEN_POWER_CFG ... 阅读全文
摘要:
zigbee数据类型转换数字->字符串:uint8 str[6];shortAddr=19233;_itoa(shortAddr,str,10);//str="19232",10进制字符串->数字:本地数据类型定义:hal_types.c
typedef signed char int8;
typedef unsigned char uint8; typedef signed short int16;
typedef unsigned short uint16; typedef signed long int32;
typedef unsigned long . 阅读全文