nodemcu-firmware/app/include/u8g2_fonts.h

28 lines
651 B
C
Raw Normal View History

2017-11-18 21:29:57 +01:00
#ifndef _U8G2_FONTS_H
#define _U8G2_FONTS_H
#define U8G2_FONT_TABLE_ENTRY(font)
2017-11-19 22:42:20 +01:00
// ***************************************************************************
// Configure U8glib fonts
//
#ifndef U8G2_FONT_TABLE_EXTRA
//
2017-11-19 22:42:20 +01:00
// Add a U8G2_FONT_TABLE_ENTRY for each font you want to compile into the image
2017-11-18 21:29:57 +01:00
#define U8G2_FONT_TABLE \
U8G2_FONT_TABLE_ENTRY(font_6x10_tf) \
U8G2_FONT_TABLE_ENTRY(font_unifont_t_symbols) \
#else
2017-11-19 22:42:20 +01:00
//
// The font table can be defined in an external file.
#define U8G2_FONT_TABLE \
U8G2_FONT_TABLE_EXTRA
#endif
2017-11-19 22:42:20 +01:00
// ***************************************************************************
2017-11-18 21:29:57 +01:00
#endif /* _U8G2_FONTS_H */