[]Struct trinket_m0::Pins

pub struct Pins {
    pub port: Port,
    pub d0: Pa8<Input<Floating>>,
    pub d1: Pa2<Input<Floating>>,
    pub d2: Pa9<Input<Floating>>,
    pub d3: Pa7<Input<Floating>>,
    pub d4: Pa6<Input<Floating>>,
    pub d13: Pa10<Input<Floating>>,
    pub dotstar_ci: Pa1<Input<Floating>>,
    pub dotstar_di: Pa0<Input<Floating>>,
    pub swdio: Pa31<Input<Floating>>,
    pub swdclk: Pa30<Input<Floating>>,
    pub usb_host_enable: Pa28<Input<Floating>>,
    pub usb_sof: Pa23<Input<Floating>>,
    pub usb_dm: Pa24<Input<Floating>>,
    pub usb_dp: Pa25<Input<Floating>>,
}

Maps the pins to their arduino names and the numbers printed on the board.

Fields

port: Port

Opaque port reference

d0: Pa8<Input<Floating>>

I2C SDA

d1: Pa2<Input<Floating>>d2: Pa9<Input<Floating>>

I2C SCL

d3: Pa7<Input<Floating>>

UART RX

d4: Pa6<Input<Floating>>

UART TX

d13: Pa10<Input<Floating>>

Digital pin number 13, which is also attached to the red LED. PWM capable.

dotstar_ci: Pa1<Input<Floating>>

The DotStar clock

dotstar_di: Pa0<Input<Floating>>

The DotStar data line

swdio: Pa31<Input<Floating>>swdclk: Pa30<Input<Floating>>usb_host_enable: Pa28<Input<Floating>>

USB host enable pin

usb_sof: Pa23<Input<Floating>>

The USB SOF 1kHz pad

usb_dm: Pa24<Input<Floating>>

The USB D- pad

usb_dp: Pa25<Input<Floating>>

The USB D+ pad

Methods

impl Pins

pub fn new(port: PORT) -> Self

Auto Trait Implementations

impl Unpin for Pins

impl Sync for Pins

impl Send for Pins

Blanket Implementations

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self