Click or drag to resize

I2C Constructor

Create a remote I2C bus controller.

Namespace: IO.Objects.RemoteIO
Assembly: libsimpleio (in libsimpleio.dll) Version: 2.2024.167.1
Syntax
C#
public I2C(
	Device dev,
	int num,
	int speed = 100000
)

Parameters

dev  Device
Remote I/O device object.
num  Int32
I2C bus number: 0 to 127.
speed  Int32  (Optional)
I2C bus clock frequency in Hz
Remarks
Use Device.I2C_Create() instead of this constructor.
See Also