nodemcu-firmware/app/include/u8g_config.h

21 lines
471 B
C
Raw Normal View History

2015-03-12 21:50:57 +01:00
#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
2015-03-12 23:09:41 +01:00
// Enable display drivers
#define U8G_SSD1306_128x64_I2C
#define U8G_SSD1306_128x64_SPI
#define U8G_PCD8544_84x48
2015-03-12 21:50:57 +01:00
#endif /* __U8G_CONFIG_H__ */