Edit

Share via


SupportedMode Constructors

Definition

Overloads

SupportedMode(SupportedMode)
SupportedMode(Byte, String)

Declares a new pin mode

SupportedMode(Byte, String, PinUsage)

Declares a new pin mode

SupportedMode(SupportedMode)

protected SupportedMode (Iot.Device.Arduino.SupportedMode original);
new Iot.Device.Arduino.SupportedMode : Iot.Device.Arduino.SupportedMode -> Iot.Device.Arduino.SupportedMode
Protected Sub New (original As SupportedMode)

Parameters

original
SupportedMode

Applies to

SupportedMode(Byte, String)

Declares a new pin mode

public SupportedMode (byte value, string name);
new Iot.Device.Arduino.SupportedMode : byte * string -> Iot.Device.Arduino.SupportedMode
Public Sub New (value As Byte, name As String)

Parameters

value
Byte

The pin mode value

name
String

The user-readable name for the mode

Applies to

SupportedMode(Byte, String, PinUsage)

Declares a new pin mode

public SupportedMode (byte value, string name, Iot.Device.Board.PinUsage pinUsage);
new Iot.Device.Arduino.SupportedMode : byte * string * Iot.Device.Board.PinUsage -> Iot.Device.Arduino.SupportedMode
Public Sub New (value As Byte, name As String, pinUsage As PinUsage)

Parameters

value
Byte

The pin mode value

name
String

The user-readable name for the mode

pinUsage
PinUsage

Pin usage for this mode, if applicable

Applies to