@@ -349,6 +349,10 @@ sent to remote node. suppressTimedRequestMessage: When set to true, we suppress
349
349
sending Timed Request Message. commandRefsOverride: List of commandRefs to use
350
350
for each command with the same index in `commands` .
351
351
352
+ ** Returns** :
353
+
354
+ - TestOnlyBatchCommandResponse
355
+
352
356
< a id =" chip.ChipDeviceCtrl.ChipDeviceControllerBase.TestOnlySendCommandTimedRequestFlagWithNoTimedInvoke" >< / a>
353
357
354
358
# ### TestOnlySendCommandTimedRequestFlagWithNoTimedInvoke
@@ -413,7 +417,7 @@ async def SendBatchCommands(
413
417
414
418
Send a batch of cluster- object encapsulated commands to a node and get returned
415
419
a future that can be awaited upon to receive the responses. If a valid
416
- responseType is passed in , that will be used to deserialize the object . If not ,
420
+ responseType is passed in , that will be used to de - serialize the object . If not ,
417
421
the type will be automatically deduced from the metadata received over the wire.
418
422
419
423
nodeId: Target' s Node ID commands: A list of InvokeRequestInfo containing the
@@ -673,7 +677,7 @@ sent.
673
677
List[Cluster]]) Access as
674
678
returned_object[endpoint_id][< Cluster class > ][< Attribute class > ] Ex. To
675
679
access the OnTime attribute from the OnOff cluster on endpoint 1
676
- ret [1 ][Clusters.OnOff][Clusters.OnOff.Attributes.OnTime]
680
+ returned_object [1 ][Clusters.OnOff][Clusters.OnOff.Attributes.OnTime]
677
681
678
682
** Raises** :
679
683
@@ -737,7 +741,7 @@ subscriptions. When not provided, a read request will be sent.
737
741
Callable[[EventReadResult, SubscriptionTransaction], None ] You can await
738
742
events using a trigger mechanism in the callback. ex. queue.SimpleQueue
739
743
740
- - read request: AsyncReadTransation .ReadResponse.events. This is a
744
+ - read request: AsyncReadTransaction .ReadResponse.events. This is a
741
745
List[ClusterEvent].
742
746
743
747
** Raises** :
@@ -1000,9 +1004,11 @@ selected filter.
1000
1004
# ### CommissionWithCode
1001
1005
1002
1006
```python
1003
- def CommissionWithCode(setupPayload: str ,
1004
- nodeid: int ,
1005
- networkOnly: bool = False ) -> PyChipError
1007
+ def CommissionWithCode(
1008
+ setupPayload: str ,
1009
+ nodeid: int ,
1010
+ discoveryType: DiscoveryType = DiscoveryType.DISCOVERY_ALL
1011
+ ) -> PyChipError
1006
1012
```
1007
1013
1008
1014
Commission with the given nodeid from the setupPayload. setupPayload may be a QR
0 commit comments