FX3ConnectionI2CWriteBytes Method |
Write bytes to an I2C slave device attached to the FX3
Namespace:
FX3Api
Assembly:
FX3Api (in FX3Api.dll) Version: 2.9.4.0 (2.9.4)
Syntaxpublic void I2CWriteBytes(
I2CPreamble Preamble,
IEnumerable<byte> WriteData,
uint TimeoutInMs
)
Public Sub I2CWriteBytes (
Preamble As I2CPreamble,
WriteData As IEnumerable(Of Byte),
TimeoutInMs As UInteger
)
public:
void I2CWriteBytes(
I2CPreamble^ Preamble,
IEnumerable<unsigned char>^ WriteData,
unsigned int TimeoutInMs
)
member I2CWriteBytes :
Preamble : I2CPreamble *
WriteData : IEnumerable<byte> *
TimeoutInMs : uint32 -> unit
Parameters
- Preamble
- Type: FX3ApiI2CPreamble
The I2C preamble to transmit at the start of the write operation - WriteData
- Type: System.Collections.GenericIEnumerableByte
The write data to transmit on SDA after finishing the preamble - TimeoutInMs
- Type: SystemUInt32
Write timeout period, in ms
See Also