Struct rppal::gpio::InputPin[][src]

pub struct InputPin { /* fields omitted */ }
Expand description

GPIO pin configured as input.

InputPins are constructed by converting a Pin using Pin::into_input, Pin::into_input_pullup or Pin::into_input_pulldown. The pin’s mode is automatically set to Input.

An InputPin can be used to read a pin’s logic level, or (a)synchronously poll for interrupt trigger events.

The unproven embedded-hal digital::InputPin trait implementation for InputPin can be enabled by specifying the optional hal-unproven feature in the dependency declaration for the rppal crate.

Implementations

Returns the GPIO pin number.

Pins are addressed by their BCM numbers, rather than their physical location.

Reads the pin’s logic level.

Reads the pin’s logic level, and returns true if it’s set to Low.

Reads the pin’s logic level, and returns true if it’s set to High.

Configures a synchronous interrupt trigger.

After configuring a synchronous interrupt trigger, call poll_interrupt or Gpio::poll_interrupts to block while waiting for a trigger event.

Any previously configured (a)synchronous interrupt triggers will be cleared.

Removes a previously configured synchronous interrupt trigger.

Blocks until an interrupt is triggered on the pin, or a timeout occurs.

This only works after the pin has been configured for synchronous interrupts using set_interrupt. Asynchronous interrupt triggers are automatically polled on a separate thread.

Calling poll_interrupt blocks any other calls to poll_interrupt (including on other InputPins) or Gpio::poll_interrupts until it returns. If you need to poll multiple pins simultaneously, use Gpio::poll_interrupts to block while waiting for any of the interrupts to trigger, or switch to using asynchronous interrupts with set_async_interrupt.

Setting reset to false returns any cached interrupt trigger events if available. Setting reset to true clears all cached events before polling for new events.

The timeout duration indicates how long the call will block while waiting for interrupt trigger events, after which an Ok(None)) is returned. timeout can be set to None to wait indefinitely.

Configures an asynchronous interrupt trigger, which executes the callback on a separate thread when the interrupt is triggered.

The callback closure or function pointer is called with a single Level argument.

Any previously configured (a)synchronous interrupt triggers for this pin are cleared when set_async_interrupt is called, or when InputPin goes out of scope.

Removes a previously configured asynchronous interrupt trigger.

Returns the value of reset_on_drop.

When enabled, resets the pin’s mode to its original state and disables the built-in pull-up/pull-down resistors when the pin goes out of scope. By default, this is set to true.

Note

Drop methods aren’t called when a process is abnormally terminated, for instance when a user presses Ctrl + C, and the SIGINT signal isn’t caught. You can catch those using crates such as simple_signal.

Trait Implementations

Formats the value using the given formatter. Read more

Resets the pin’s mode and disables the built-in pull-up/pull-down resistors if reset_on_drop is set to true (default).

InputPin trait implementation for embedded-hal v1.0.0-alpha.5.

Error type

Is the input pin high?

Is the input pin low?

Unproven InputPin trait implementation for embedded-hal v0.2.6.

Error type

Is the input pin high?

Is the input pin low?

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.