Zephyr API 3.6.99
|
Structure for a custom character. More...
#include <auxdisplay.h>
Data Fields | |
uint8_t | index |
Custom character index on the display. | |
uint8_t * | data |
Custom character pixel data, a character must be valid for a display consisting of a uint8 array of size character width by character height, values should be 0x00 for pixel off or 0xff for pixel on, if a display supports shades then values between 0x00 and 0xff may be used (display driver dependent). | |
uint8_t | character_code |
Will be updated with custom character index to use in the display write function to disaplay this custom character. | |
Structure for a custom character.
uint8_t auxdisplay_character::character_code |
Will be updated with custom character index to use in the display write function to disaplay this custom character.
uint8_t* auxdisplay_character::data |
Custom character pixel data, a character must be valid for a display consisting of a uint8 array of size character width by character height, values should be 0x00 for pixel off or 0xff for pixel on, if a display supports shades then values between 0x00 and 0xff may be used (display driver dependent).
uint8_t auxdisplay_character::index |
Custom character index on the display.