@@ -317,14 +317,6 @@ device commissioning procedure to configure the device with a Wi-Fi interface.
317
317
devCtrl.SetWiFiCredentials('TESTSSID', 'P455W4RD')
318
318
```
319
319
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
-
328
320
### `ConnectBLE(<discriminator>: int, <setup pin code>: int, <nodeid>: int)`
329
321
330
322
Do key exchange and establish a secure session between controller and device
@@ -401,15 +393,15 @@ MoveWithOnOff(
401
393
402
394
### ` ReadAttribute(<nodeid>: int, [(<endpoint id>: int, Clusters.<cluster>.Attributes.<attribute>)]) `
403
395
404
- Read the value of ZCL attribute. For example:
396
+ Read the value of an attribute. For example:
405
397
406
398
``` python
407
399
await devCtrl.ReadAttribute(1234 , [(0 , Clusters.BasicInformation.Attributes.VendorName)])
408
400
```
409
401
410
402
### ` WriteAttribute(<nodeid>: int, [(<endpointid>: int, Clusters.<cluster>.Attributes.<attribute>(value=<attribute value>))]) `
411
403
412
- Write the value to a ZCL attribute. For example:
404
+ Write a value to an attribute. For example:
413
405
414
406
``` python
415
407
await devCtrl.WriteAttribute(1234 , [(1 , Clusters.UnitTesting.Attributes.Int8u(value = 1 ))])
0 commit comments