Struct esp_idf_hal::ledc::LEDC

source ·
pub struct LEDC {
    pub timer0: TIMER0,
    pub timer1: TIMER1,
    pub timer2: TIMER2,
    pub timer3: TIMER3,
    pub channel0: CHANNEL0,
    pub channel1: CHANNEL1,
    pub channel2: CHANNEL2,
    pub channel3: CHANNEL3,
    pub channel4: CHANNEL4,
    pub channel5: CHANNEL5,
}
Expand description

The LED Control device peripheral

Fields§

§timer0: TIMER0§timer1: TIMER1§timer2: TIMER2§timer3: TIMER3§channel0: CHANNEL0§channel1: CHANNEL1§channel2: CHANNEL2§channel3: CHANNEL3§channel4: CHANNEL4§channel5: CHANNEL5

Implementations§

source§

impl LEDC

source

pub unsafe fn new() -> Self

Creates a new instance of the LEDC peripheral. Typically one wants to use the instance ledc from the device peripherals obtained via peripherals::Peripherals::take().

§Safety

It is safe to instantiate the LEDC peripheral exactly one time. Care has to be taken that this has not already been done elsewhere.

Auto Trait Implementations§

§

impl RefUnwindSafe for LEDC

§

impl Send for LEDC

§

impl !Sync for LEDC

§

impl Unpin for LEDC

§

impl UnwindSafe for LEDC

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.