Click or drag to resize

SocketCreateGPIOPin Method

Create a GPIO pin object instance for a given pin of a given socket.

Namespace: IO.Objects.SimpleIO.mikroBUS
Assembly: libsimpleio (in libsimpleio.dll) Version: 2.2025.76.2
Syntax
C#
public Pin CreateGPIOPin(
	SocketPins desg,
	Direction dir,
	bool state = false,
	Drive drive = Drive.PushPull,
	Edge edge = Edge.None
)

Parameters

desg  SocketPins
mikroBUS socket pin designator.
dir  Direction
Data direction.
state  Boolean  (Optional)
Initial state for the reset output.
drive  Drive  (Optional)
Output drive setting. Ignored for remote GPIO pins.
edge  Edge  (Optional)
Input edge trigger setting. Ignored for remote GPIO pins.

Return Value

Pin
GPIO pin object instance.

Implements

SocketCreateGPIOPin(SocketPins, Direction, Boolean, Drive, Edge)
Remarks
Seldom are all of the mikroBUS socket pins available for GPIO. Usually many of them are configured for other special functions, including SPI bus, I2C bus, PWM output, etc.
See Also