pub trait DisplaySpec {
    type Framebuffer: FramebufferType;

    const WIDTH: u16;
    const HEIGHT: u16;
}
Expand description

Specification for displays.

Required Associated Types§

Required Associated Constants§

Implementors§

source§

impl DisplaySpec for LPM009M360A

source§

const WIDTH: u16 = 72u16

source§

const HEIGHT: u16 = 144u16

§

type Framebuffer = Framebuffer4Bit<{ Self::WIDTH }, { Self::HEIGHT }>

source§

impl DisplaySpec for LPM009M360A<BinaryColor>

source§

const WIDTH: u16 = 72u16

source§

const HEIGHT: u16 = 144u16

§

type Framebuffer = FramebufferBW<{ Self::WIDTH }, { Self::HEIGHT }>

source§

impl DisplaySpec for LPM013M126A

source§

const WIDTH: u16 = 176u16

source§

const HEIGHT: u16 = 176u16

§

type Framebuffer = Framebuffer4Bit<{ Self::WIDTH }, { Self::HEIGHT }>

source§

impl DisplaySpec for LPM013M126A<BinaryColor>

source§

const WIDTH: u16 = 176u16

source§

const HEIGHT: u16 = 176u16

§

type Framebuffer = FramebufferBW<{ Self::WIDTH }, { Self::HEIGHT }>