Trait esp_idf_svc::hal::ledc::SpeedMode

source ·
pub trait SpeedMode: Send + Sync + 'static {
    const SPEED_MODE: u32;
    const HIGH_SPEED: bool;
}
Expand description

Speed mode for the LED Control peripheral The ESP32 supports two speed modes: low and high speed All others support only low speed mode.

Required Associated Constants§

source

const SPEED_MODE: u32

source

const HIGH_SPEED: bool

Object Safety§

This trait is not object safe.

Implementors§

source§

impl SpeedMode for LowSpeed

source§

const SPEED_MODE: u32 = 0u32

source§

const HIGH_SPEED: bool = false