Replaces proprietary fonts

This commit is contained in:
lilian 2016-12-09 10:00:12 +01:00
parent 579023e3f5
commit 7c348f3ca1
4 changed files with 2969 additions and 5 deletions

View file

@ -1,3 +1,3 @@
PROGRAM=SSD1306_fps
EXTRA_COMPONENTS = extras/ssd1306 extras/i2c extras/fonts
include ../../common.mk
include ../../common.mk

File diff suppressed because it is too large Load diff

1341
extras/fonts/font_roboto_8.c Normal file

File diff suppressed because it is too large Load diff

View file

@ -7,12 +7,12 @@
#include "fonts.h"
extern const font_info_t glcd_5x7_font_info;
extern const font_info_t tahoma_8pt_font_info;
extern const font_info_t tahoma_16ptFontInfo;
extern const font_info_t roboto_8ptFontInfo;
extern const font_info_t roboto_10ptFontInfo;
const font_info_t* fonts[NUM_FONTS] =
{
&glcd_5x7_font_info,
&tahoma_8pt_font_info,
&tahoma_16ptFontInfo,
&roboto_8ptFontInfo,
&roboto_10ptFontInfo,
};