SeesawGpioDriver.Read Method

Definition

Overloads

Read(Int32)

Reads the current value of a pin.

Read(Span<PinValuePair>)

Read the given pins with the given pin numbers.

Read(Int32)

Reads the current value of a pin.

protected override System.Device.Gpio.PinValue Read (int pinNumber);
override this.Read : int -> System.Device.Gpio.PinValue
Protected Overrides Function Read (pinNumber As Integer) As PinValue

Parameters

pinNumber
Int32

The pin number in the controller's numbering scheme.

Returns

The value of the pin.

Applies to

Read(Span<PinValuePair>)

Read the given pins with the given pin numbers.

public void Read (Span<System.Device.Gpio.PinValuePair> pinValuePairs);
override this.Read : Span<System.Device.Gpio.PinValuePair> -> unit
Public Sub Read (pinValuePairs As Span(Of PinValuePair))

Parameters

pinValuePairs
Span<PinValuePair>

The pin/value pairs to read.

Applies to