tft_rs/
lib.rs

1pub mod display;
2pub mod drivers;
3pub enum Orientation {
4    Portrait,
5    Landscape,
6    PortraitReverse,
7    LandscapeReverse,
8}
9
10#[derive(Debug)]
11pub enum Error {
12    GPIO,
13    SPI,
14    InvalidBoundingBox,
15    Delay,
16}