Trait esp32_hal::gpio::Pull[][src]

pub trait Pull {
    fn internal_pull_up(&mut self, on: bool) -> &mut Self;
fn internal_pull_down(&mut self, on: bool) -> &mut Self; }
Expand description

Functions available on pins with pull up/down resistors

Required methods

Enable/Disable internal pull up resistor

Enable/Disable internal pull down resistor

Implementors