Fonts | U8x8
: Useful for highlighting menu items by inverting the character colors. Creating and Editing Custom Fonts standard U8x8 font list doesn't meet your needs, you can build your own:
// Define the rendering function void render_font_char(uint8_t char_code, uint8_t x, uint8_t y) // Load the font data for the character uint8_t *font_ptr = &font_data[char_code * 8]; u8x8 fonts
Unlike standard fonts that require a memory buffer to render complex graphics, u8x8 fonts write directly to the display : Useful for highlighting menu items by inverting
If you want, I can: