nodemcu-firmware/app/include/u8g2_fonts.h

30 lines
797 B
C
Raw Permalink 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
2018-07-30 23:25:55 +02:00
// See https://github.com/olikraus/u8g2/wiki/fntlistall for a complete list of
// available fonts. Drop the 'u8g2_' prefix when you add them here.
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
//
2019-02-17 19:26:29 +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 */