Skip to content

Commit 37d6d44

Browse files
committed
Add basic clusters to both coordinator endpoints ("fixes" #72)
1 parent 06af078 commit 37d6d44

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

zigpy_znp/zigbee/application.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1080,7 +1080,10 @@ async def _register_endpoints(self) -> None:
10801080
DeviceId=zigpy.profiles.zha.DeviceType.IAS_CONTROL,
10811081
DeviceVersion=0b0000,
10821082
LatencyReq=c.af.LatencyReq.NoLatencyReqs,
1083-
InputClusters=[clusters.general.Ota.cluster_id],
1083+
InputClusters=[
1084+
clusters.general.Basic.cluster_id,
1085+
clusters.general.Ota.cluster_id,
1086+
],
10841087
OutputClusters=[
10851088
clusters.security.IasZone.cluster_id,
10861089
clusters.security.IasWd.cluster_id,
@@ -1096,7 +1099,7 @@ async def _register_endpoints(self) -> None:
10961099
DeviceId=zigpy.profiles.zll.DeviceType.CONTROLLER,
10971100
DeviceVersion=0b0000,
10981101
LatencyReq=c.af.LatencyReq.NoLatencyReqs,
1099-
InputClusters=[],
1102+
InputClusters=[clusters.general.Basic.cluster_id],
11001103
OutputClusters=[],
11011104
),
11021105
RspStatus=t.Status.SUCCESS,

0 commit comments

Comments
 (0)