Create a remote GPIO pin.
            
Namespace: IO.Objects.RemoteIOAssembly: libremoteio (in libremoteio.dll) Version: 2.2025.275.1
Syntaxpublic 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.
 
RemarksUse Device.GPIO_Create() instead of this constructor.
See Also