Module ssd1322::display[][src]

Expand description

The main API to the display driver. It provides a builder API to configure the display, and methods for obtaining Region instances which can be used to write image data to the display.

Modules

Extended region abstraction that allows requesting regions that “overscan” the display, i.e. portions of the region may lie outside the displayable area. Image data written into overscanned regions is silently discarded, to relieve the user from having to consider boundary conditions in code where the region rectangle is dynamically computed.

Region abstraction for drawing into rectangular regions of the display.

Structs

A driver for an SSD1322 display.

A pixel coordinate pair of column and row. column must be in the range [0, consts::PIXEL_COL_MAX], and row must be in the range [0, consts::PIXEL_ROW_MAX].