原来还有这个区别,那确实如果认不出型号就有点难办了
我家里是肖邦的单键和双键开关,退网重新匹配能在ZHA里面识别到。
我的单键开关识别出来制造商是"konke",model是"3AFE242000068621"、双键开关model是"3AFE242000068622",但可能跟你的不一样了
我的肖邦单键开关按ZHA的zcl标准描述是:
MODELS_INFO: [("konke", "3AFE242000068621")],
# 控客有一个自己的ClusterID 0xFCC0 = 64704
# 开关都有两个endpoint,一个主开关编号1,一个不确定有啥功能的242
# Endpoint1:
<SimpleDescriptor endpoint=1 profile=260, device_type=259
device_version=0
input_clusters=[0, 3, 4, 5, 6, 2821, 64704]
output_clusters=[3, 25, 64704]>
# Endpoint242:
<SimpleDescriptor endpoint=242 profile=41440, device_type=97,
in_clusters=[],
out_clusters=[33]>
双键开关描述是:
MODELS_INFO: [("konke", "3AFE242000068622")]
# 双键开关有两个开关相关的Endpoint,ID分别为1和2,具体的SimpleDescriptor和单键开关一样
# Endpoint1:
<SimpleDescriptor endpoint=1 profile=260, device_type=259
device_version=0
input_clusters=[0, 3, 4, 5, 6, 2821, 64704]
output_clusters=[3, 25, 64704]>
# Endpoint2:
<SimpleDescriptor endpoint=2 profile=260, device_type=259
device_version=0
input_clusters=[0, 3, 4, 5, 6, 2821, 64704]
output_clusters=[3, 25, 64704]>
# Endpoint242:
<SimpleDescriptor endpoint=242 profile=41440, device_type=97,
in_clusters=[],
out_clusters=[33]>
|