2018-12-16 07:39:23 +00:00
|
|
|
#include "FontTypes.h"
|
|
|
|
|
|
|
|
// Font data for Arial 8pt
|
|
|
|
extern const uint8_t PROGMEM arial_8ptBitmaps [];
|
|
|
|
extern const FONT_INFO arial_8ptFontInfo;
|
|
|
|
extern const FONT_CHAR_INFO PROGMEM arial_8ptDescriptors[];
|
|
|
|
|
|
|
|
// Font data for Arial 7pt
|
|
|
|
extern const uint8_t PROGMEM arial_7ptBitmaps [];
|
|
|
|
extern const FONT_INFO arial_7ptFontInfo;
|
|
|
|
extern const FONT_CHAR_INFO PROGMEM arial_7ptDescriptors[];
|
|
|
|
|
2019-07-27 14:28:39 +00:00
|
|
|
// Font data for Arial 8pt Bold
|
|
|
|
extern const uint8_t PROGMEM arial_8ptBoldBitmaps [];
|
|
|
|
extern const FONT_INFO arial_8ptBoldFontInfo;
|
|
|
|
extern const FONT_CHAR_INFO PROGMEM arial_8ptBoldDescriptors[];
|
|
|
|
|
|
|
|
// Font data for Arial 12pt
|
|
|
|
extern const uint8_t PROGMEM arial_12ptBitmaps [];
|
|
|
|
extern const FONT_INFO arial_12ptFontInfo;
|
|
|
|
extern const FONT_CHAR_INFO PROGMEM arial_12ptDescriptors[];
|
|
|
|
|
|
|
|
// Font data for Arial Black 12pt
|
|
|
|
extern const uint8_t PROGMEM arialBlack_12ptBitmaps [];
|
|
|
|
extern const FONT_INFO arialBlack_12ptFontInfo;
|
|
|
|
extern const FONT_CHAR_INFO PROGMEM arialBlack_12ptDescriptors[];
|
|
|
|
|