Fonts | U8x8

// Clear the screen u8x8.clear();

Here is the pattern for the letter 'A' (8x8): u8x8 fonts

// Move to second row (Row 1, Column 0) u8x8.setCursor(0, 1); u8x8.print("U8x8 Fonts Rock"); // Clear the screen u8x8

// Select your U8x8 font here u8x8.setFont(u8x8_font_chroma48medium8x8_r); // Clear the screen u8x8.clear()