pub trait Pins: Sealed {
    type Lcds: Conjure;
}
Expand description

A set of pins that can be used with the FSMC

This trait is implemented for the LcdPins struct that contains 16 data pins, 1 through 4 address pins, 1 through 4 chip select / bank enable pins, an output enable pin, and a write enable pin.

Required Associated Types

One, two, three, or four Lcd<_> objects associated with the sub-bank(s) that the chip select pin pin(s) control

Implementors