This commit is contained in:
IMback 2017-09-14 18:10:46 +02:00
commit dd6f37a960
15 changed files with 1841 additions and 0 deletions

13
font.h Normal file
View file

@ -0,0 +1,13 @@
// font.h
#ifndef _FONT_h
#define _FONT_h
#include "WString.h"
#include "plotter.h"
#include "point.h"
void drawFontString(Plotter *plotter, String s, int scale = 6);
#endif