Write a user/device-defined set of bytes to an IIC address.

Namespace:  Bespoke.Robotics.BrainStem
Assembly:  Bespoke.Robotics.BrainStem (in Bespoke.Robotics.BrainStem.dll) Version: 2.0.0.0 (2.0.0.0)

Syntax

C#
public static void WriteIicOutput(
	byte iicAddress,
	byte[] data
)
Visual Basic (Declaration)
Public Shared Sub WriteIicOutput ( _
	iicAddress As Byte, _
	data As Byte() _
)
Visual C++
public:
static void WriteIicOutput(
	unsigned char iicAddress, 
	array<unsigned char>^ data
)

Parameters

iicAddress
Type: System..::.Byte
The address of the IIC module referenced by the packet.
data
Type: array< System..::.Byte >[]()[]
The array of raw bytes to be sent to the IIC module.

See Also