Appearance
Home > resol-vbus-core-toolbox-scripts > parameterization > ParameterizationService > transceiveValues
parameterization.ParameterizationService.transceiveValues() method
Write and/or read a list of values to/from a VBus device.
Signature:
typescript
transceiveValues<T extends ParameterizationValue>(channel: number, address: number, values: T[]): Promise<T[]>;
Parameters
Parameter | Type | Description |
---|---|---|
channel | number | The VBus channel. |
address | number | The address of the VBus device. |
values | T[] | The list of values to write and/or read. |
Promise<T[]>
The array passed in as values
, but with updated information.