Compartir a través de


GpioController.OpenPin Método

Definición

Sobrecargas

OpenPin(Int32, PinMode)

Abre un pin y lo establece en un modo específico.

OpenPin(Int32, PinMode, PinValue)

Abre un pin y lo establece en un modo y un valor específicos.

OpenPin(Int32)

Abre un pin para que esté listo para su uso. El controlador intenta abrir la patilla sin cambiar su modo o valor.

OpenPin(Int32, PinMode)

Abre un pin y lo establece en un modo específico.

public void OpenPin (int pinNumber, System.Device.Gpio.PinMode mode);
public System.Device.Gpio.GpioPin OpenPin (int pinNumber, System.Device.Gpio.PinMode mode);
member this.OpenPin : int * System.Device.Gpio.PinMode -> unit
member this.OpenPin : int * System.Device.Gpio.PinMode -> System.Device.Gpio.GpioPin
Public Sub OpenPin (pinNumber As Integer, mode As PinMode)
Public Function OpenPin (pinNumber As Integer, mode As PinMode) As GpioPin

Parámetros

pinNumber
Int32

Número de patilla del esquema de numeración del controlador.

mode
PinMode

Modo que se va a establecer.

Devoluciones

Se aplica a

OpenPin(Int32, PinMode, PinValue)

Abre un pin y lo establece en un modo y un valor específicos.

public void OpenPin (int pinNumber, System.Device.Gpio.PinMode mode, System.Device.Gpio.PinValue initialValue);
public System.Device.Gpio.GpioPin OpenPin (int pinNumber, System.Device.Gpio.PinMode mode, System.Device.Gpio.PinValue initialValue);
member this.OpenPin : int * System.Device.Gpio.PinMode * System.Device.Gpio.PinValue -> unit
member this.OpenPin : int * System.Device.Gpio.PinMode * System.Device.Gpio.PinValue -> System.Device.Gpio.GpioPin
Public Sub OpenPin (pinNumber As Integer, mode As PinMode, initialValue As PinValue)
Public Function OpenPin (pinNumber As Integer, mode As PinMode, initialValue As PinValue) As GpioPin

Parámetros

pinNumber
Int32

Número de patilla del esquema de numeración del controlador.

mode
PinMode

Modo que se va a establecer.

initialValue
PinValue

Valor inicial que se va a establecer si el modo es la salida. El controlador intentará establecer el modo sin provocar errores en el otro valor. (si initialValue es High, el pin no debe deslizarse a bajo durante la apertura)

Devoluciones

Se aplica a

OpenPin(Int32)

Abre un pin para que esté listo para su uso. El controlador intenta abrir la patilla sin cambiar su modo o valor.

public void OpenPin (int pinNumber);
public System.Device.Gpio.GpioPin OpenPin (int pinNumber);
member this.OpenPin : int -> unit
member this.OpenPin : int -> System.Device.Gpio.GpioPin
Public Sub OpenPin (pinNumber As Integer)
Public Function OpenPin (pinNumber As Integer) As GpioPin

Parámetros

pinNumber
Int32

Número de patilla del esquema de numeración del controlador.

Devoluciones

Se aplica a