// arial_black_16.h - Generated by U8g2 #ifndef ARIAL_BLACK_16_H #define ARIAL_BLACK_16_H #include <U8g2lib.h>

Move arial_black_16.h into your Arduino sketch folder (or the src folder of your PlatformIO project).

void setup() { u8g2.begin(); u8g2.setFont(arial_black_16); // Note: The variable name inside your .h file }

extern const u8g2_font_info_t arial_black_16_info; // Declare the external font

static const uint8_t arial_black_16_bitmap[] U8X8_PROGMEM = { 0x00, 0x00, 0x00, // Char 32 (Space) 0x00, 0x5F, 0x00, // Char 33 (!) 0x07, 0x00, 0x07, // Char 34 (") // ... Hundreds of lines of binary pixel data ... };

#include <U8g2lib.h> // Use the reference to the external font U8G2_SSD1306_128X64_NONAME_1_HW_I2C u8g2(U8G2_R0, U8X8_PIN_NONE);