pub trait IntoPwmPin<TC, PIN> {
    // Required method
    fn into_pwm(self, timer: &TC) -> Pin<PwmOutput<TC>, PIN>;
}

Required Methods§

source

fn into_pwm(self, timer: &TC) -> Pin<PwmOutput<TC>, PIN>

Implementors§

source§

impl<TC, PIN: PwmPinOps<TC>> IntoPwmPin<TC, PIN> for Pin<Output, PIN>