Skip to content

Commit

Permalink
Add basic clusters to both coordinator endpoints ("fixes" #72)
Browse files Browse the repository at this point in the history
  • Loading branch information
puddly committed Oct 30, 2021
1 parent 06af078 commit 37d6d44
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions zigpy_znp/zigbee/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -1080,7 +1080,10 @@ async def _register_endpoints(self) -> None:
DeviceId=zigpy.profiles.zha.DeviceType.IAS_CONTROL,
DeviceVersion=0b0000,
LatencyReq=c.af.LatencyReq.NoLatencyReqs,
InputClusters=[clusters.general.Ota.cluster_id],
InputClusters=[
clusters.general.Basic.cluster_id,
clusters.general.Ota.cluster_id,
],
OutputClusters=[
clusters.security.IasZone.cluster_id,
clusters.security.IasWd.cluster_id,
Expand All @@ -1096,7 +1099,7 @@ async def _register_endpoints(self) -> None:
DeviceId=zigpy.profiles.zll.DeviceType.CONTROLLER,
DeviceVersion=0b0000,
LatencyReq=c.af.LatencyReq.NoLatencyReqs,
InputClusters=[],
InputClusters=[clusters.general.Basic.cluster_id],
OutputClusters=[],
),
RspStatus=t.Status.SUCCESS,
Expand Down

0 comments on commit 37d6d44

Please sign in to comment.