Skip to content

Commit 8a03034

Browse files
authored
Add interview node command to client (#517)
1 parent 874a7bf commit 8a03034

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

matter_server/client/client.py

+4
Original file line numberDiff line numberDiff line change
@@ -411,6 +411,10 @@ async def remove_node(self, node_id: int) -> None:
411411
"""Remove a Matter node/device from the fabric."""
412412
await self.send_command(APICommand.REMOVE_NODE, node_id=node_id)
413413

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+
414418
async def subscribe_attribute(
415419
self, node_id: int, attribute_path: str | list[str]
416420
) -> None:

0 commit comments

Comments
 (0)