This is a port of Henning Kralsen's UTFT library for Arduino/chipKIT to mbed, refactored to make full use of C++ inheritance and access control, in order to reduce work when implementing new drivers and at the same time make the code more readable and easier to maintain. As of now supported are SSD1289 (16-bit interface), HX8340-B (serial interface) and ST7735 (serial interface). Drivers for other controllers will be added as time and resources to acquire the displays to test the code permit.

Dependents:   test SDCard capstone_display capstone_display_2 ... more

Embed: (wiki syntax)

« Back to documentation index

Bitmap_struct Struct Reference

Bitmap_struct Struct Reference

Describes an image. More...

#include <lcd_base.h>

Data Fields

colordepth_t Format
 Color depth of the image.
unsigned short Width
 Width of the image in pixels.
unsigned short Height
 Height of the image in pixels.
const void * PixelData
 Image pixel data.

Detailed Description

Describes an image.

Definition at line 149 of file lcd_base.h.


Field Documentation

Color depth of the image.

Definition at line 151 of file lcd_base.h.

unsigned short Height

Height of the image in pixels.

Definition at line 153 of file lcd_base.h.

const void* PixelData

Image pixel data.

Definition at line 154 of file lcd_base.h.

unsigned short Width

Width of the image in pixels.

Definition at line 152 of file lcd_base.h.