We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 874a7bf commit 8a03034Copy full SHA for 8a03034
matter_server/client/client.py
@@ -411,6 +411,10 @@ async def remove_node(self, node_id: int) -> None:
411
"""Remove a Matter node/device from the fabric."""
412
await self.send_command(APICommand.REMOVE_NODE, node_id=node_id)
413
414
+ async def interview_node(self, node_id: int) -> None:
415
+ """Interview a node."""
416
+ await self.send_command(APICommand.INTERVIEW_NODE, node_id=node_id)
417
+
418
async def subscribe_attribute(
419
self, node_id: int, attribute_path: str | list[str]
420
) -> None:
0 commit comments