From 9d175ca620af338cebd52e9361fac977e109c7fc Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Thu, 23 May 2024 08:59:12 +0200 Subject: [PATCH] Address review feedback --- docs/guides/python_chip_controller_building.md | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/docs/guides/python_chip_controller_building.md b/docs/guides/python_chip_controller_building.md index 6d267cb3dbfb18..143bbdaf2a52b4 100644 --- a/docs/guides/python_chip_controller_building.md +++ b/docs/guides/python_chip_controller_building.md @@ -317,14 +317,6 @@ device commissioning procedure to configure the device with a Wi-Fi interface. devCtrl.SetWiFiCredentials('TESTSSID', 'P455W4RD') ``` -### `CommissionIP(: str, : int, : int)` - -Commission a device using IP address directly. - -The Node ID will be used by controller to distinguish multiple devices. This -does not match the spec and will be removed later. The nodeid will not be -persisted by controller / device. - ### `ConnectBLE(: int, : int, : int)` Do key exchange and establish a secure session between controller and device @@ -401,7 +393,7 @@ MoveWithOnOff( ### `ReadAttribute(: int, [(: int, Clusters..Attributes.)])` -Read the value of ZCL attribute. For example: +Read the value of an attribute. For example: ```python await devCtrl.ReadAttribute(1234, [(0, Clusters.BasicInformation.Attributes.VendorName)]) @@ -409,7 +401,7 @@ await devCtrl.ReadAttribute(1234, [(0, Clusters.BasicInformation.Attributes.Vend ### `WriteAttribute(: int, [(: int, Clusters..Attributes.(value=))])` -Write the value to a ZCL attribute. For example: +Write a value to an attribute. For example: ```python await devCtrl.WriteAttribute(1234, [(1, Clusters.UnitTesting.Attributes.Int8u(value=1))])