Skip to content

Commit 77c6f5e

Browse files
committed
Address review feedback
1 parent 3818206 commit 77c6f5e

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

docs/guides/python_chip_controller_building.md

+2-10
Original file line numberDiff line numberDiff line change
@@ -317,14 +317,6 @@ device commissioning procedure to configure the device with a Wi-Fi interface.
317317
devCtrl.SetWiFiCredentials('TESTSSID', 'P455W4RD')
318318
```
319319
320-
### `CommissionIP(<ip address>: str, <setup pin code>: int, <nodeid>: int)`
321-
322-
Commission a device using IP address directly.
323-
324-
The Node ID will be used by controller to distinguish multiple devices. This
325-
does not match the spec and will be removed later. The nodeid will not be
326-
persisted by controller / device.
327-
328320
### `ConnectBLE(<discriminator>: int, <setup pin code>: int, <nodeid>: int)`
329321
330322
Do key exchange and establish a secure session between controller and device
@@ -401,15 +393,15 @@ MoveWithOnOff(
401393

402394
### `ReadAttribute(<nodeid>: int, [(<endpoint id>: int, Clusters.<cluster>.Attributes.<attribute>)])`
403395

404-
Read the value of ZCL attribute. For example:
396+
Read the value of an attribute. For example:
405397

406398
```python
407399
await devCtrl.ReadAttribute(1234, [(0, Clusters.BasicInformation.Attributes.VendorName)])
408400
```
409401

410402
### `WriteAttribute(<nodeid>: int, [(<endpointid>: int, Clusters.<cluster>.Attributes.<attribute>(value=<attribute value>))])`
411403

412-
Write the value to a ZCL attribute. For example:
404+
Write a value to an attribute. For example:
413405

414406
```python
415407
await devCtrl.WriteAttribute(1234, [(1, Clusters.UnitTesting.Attributes.Int8u(value=1))])

0 commit comments

Comments
 (0)