[]Struct gemma_m0::Pins

pub struct Pins {
    pub port: Port,
    pub d0: Pa4<Input<Floating>>,
    pub d1: Pa2<Input<Floating>>,
    pub d2: Pa5<Input<Floating>>,
    pub d13: Pa23<Input<Floating>>,
    pub mosi: Pa0<Input<Floating>>,
    pub sck: Pa1<Input<Floating>>,
}

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

Fields

port: Port

Opaque port reference

d0: Pa4<Input<Floating>>

I2C SDA, UART TX, SPI MOSI

d1: Pa2<Input<Floating>>

ADC, DAC

d2: Pa5<Input<Floating>>

I2C SCL, UART RX, SPI CLK

d13: Pa23<Input<Floating>>

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

mosi: Pa0<Input<Floating>>sck: Pa1<Input<Floating>>

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