[][src]Struct wio_terminal::Sets

pub struct Sets {
    pub accelerometer: Accelerometer,
    pub buzzer: Buzzer,
    pub display: Display,
    pub flash: QSPIFlash,
    pub light_sensor: LightSensor,
    pub microphone: Microphone,
    pub port: Port,
    pub sd_card: SDCard,
    pub uart: UART,
    pub usb: USB,
    pub user_led: Pa15<Input<Floating>>,
    pub buttons: ButtonPins,
    pub wifi: WifiPins,
    pub header_pins: HeaderPins,
}

Sets of pins split apart by category

Fields

accelerometer: Accelerometer

Accelerometer I2C pins

buzzer: Buzzer

Buzzer pins

display: Display

LCD display pins

flash: QSPIFlash

QSPI Flash pins

light_sensor: LightSensor

Analog Light Sensor pins

microphone: Microphone

Microphone output pins

port: Port

GPIO port

sd_card: SDCard

SD Card pins

uart: UART

UART (external pinout) pins

usb: USB

USB pins

user_led: Pa15<Input<Floating>>

LED pin

buttons: ButtonPinswifi: WifiPinsheader_pins: HeaderPins

Auto Trait Implementations

impl Send for Sets[src]

impl Sync for Sets[src]

impl Unpin for Sets[src]

Blanket Implementations

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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> 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.