Revert "Revert "ssd1306 2D and font""

This reverts commit fbc486189b.
This commit is contained in:
lilian 2016-12-08 13:03:41 +01:00
parent fbc486189b
commit 83e5124ec5
10 changed files with 7266 additions and 0 deletions

18
extras/fonts/fonts.c Normal file
View file

@ -0,0 +1,18 @@
/*
* oled_fonts.c
*
* Created on: 8 dec. 2016
* Author: zaltora
*/
#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;
const font_info_t* fonts[NUM_FONTS] =
{
&glcd_5x7_font_info,
&tahoma_8pt_font_info,
&tahoma_16ptFontInfo,
};