u8g2_fonts.h 797 B

1234567891011121314151617181920212223242526272829
  1. #ifndef _U8G2_FONTS_H
  2. #define _U8G2_FONTS_H
  3. #define U8G2_FONT_TABLE_ENTRY(font)
  4. // ***************************************************************************
  5. // Configure U8glib fonts
  6. //
  7. #ifndef U8G2_FONT_TABLE_EXTRA
  8. //
  9. // Add a U8G2_FONT_TABLE_ENTRY for each font you want to compile into the image
  10. // See https://github.com/olikraus/u8g2/wiki/fntlistall for a complete list of
  11. // available fonts. Drop the 'u8g2_' prefix when you add them here.
  12. #define U8G2_FONT_TABLE \
  13. U8G2_FONT_TABLE_ENTRY(font_6x10_tf) \
  14. U8G2_FONT_TABLE_ENTRY(font_unifont_t_symbols) \
  15. #else
  16. //
  17. // The font table can be defined in an external file.
  18. #define U8G2_FONT_TABLE \
  19. U8G2_FONT_TABLE_EXTRA
  20. #endif
  21. // ***************************************************************************
  22. #endif /* _U8G2_FONTS_H */