Click or drag to resize

SocketCreateGPIOPin Method

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

Namespace: IO.Interfaces.mikroBUS
Assembly: libsimpleio (in libsimpleio.dll) Version: 2.2025.76.2
Syntax
C#
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 GPIO output state.
drive  Drive  (Optional)
Output drive setting.
edge  Edge  (Optional)
Input edge setting.

Return Value

Pin
GPIO pin object instance.
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