mirror of
https://github.com/nodemcu/nodemcu-firmware.git
synced 2025-01-30 21:12:55 +08:00
15 lines
355 B
C
15 lines
355 B
C
|
#ifndef __U8G_CONFIG_H__
|
||
|
#define __U8G_CONFIG_H__
|
||
|
|
||
|
|
||
|
|
||
|
// Configure U8glib fonts
|
||
|
// add a U8G_FONT_TABLE_ENTRY for each font you want to compile into the image
|
||
|
#define U8G_FONT_TABLE_ENTRY(font)
|
||
|
#define U8G_FONT_TABLE \
|
||
|
U8G_FONT_TABLE_ENTRY(font_6x10) \
|
||
|
U8G_FONT_TABLE_ENTRY(font_chikita)
|
||
|
#undef U8G_FONT_TABLE_ENTRY
|
||
|
|
||
|
#endif /* __U8G_CONFIG_H__ */
|