tft-rs 0.1.0

An interfacing library for several TFT LCD displays
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod display;
pub mod drivers;
pub enum Orientation {
    Portrait,
    Landscape,
    PortraitReverse,
    LandscapeReverse,
}

#[derive(Debug)]
pub enum Error {
    GPIO,
    SPI,
    InvalidBoundingBox,
    Delay,
}