Trait esp32_hal::gpio::RTCInputPin[][src]

pub trait RTCInputPin {
    fn rtc_sleep_mode(&mut self, on: bool) -> &mut Self;
fn rtc_enable_input(&mut self, on: bool) -> &mut Self;
fn rtc_enable_input_in_sleep_mode(&mut self, on: bool) -> &mut Self;
fn rtc_is_input_high(&mut self) -> bool; }
Expand description

Functions available on RTC input pins

Required methods

Enable/Disable the sleep mode of the RTC pad

Enable/Disable RTC input circuitry

Enable/Disable RTC input circuitry while in sleep mode

Get state of RTC input

Implementors