Click or drag to resize

GPIO Constructor

Create a remote GPIO pin.

Namespace: IO.Objects.RemoteIO
Assembly: libremoteio (in libremoteio.dll) Version: 2.2024.165.1
Syntax
C#
public GPIO(
	Device dev,
	int num,
	Direction dir,
	bool state = false
)

Parameters

dev  Device
Remote I/O device object.
num  Int32
GPIO pin number: 0 to 127.
dir  Direction
GPIO pin data direction: Input or Output.
state  Boolean  (Optional)
Initial GPIO output state.
Remarks
Use Device.GPIO_Create() instead of this constructor.
See Also