Added EPD business card project to archives.

This commit is contained in:
2018-06-04 14:24:02 -07:00
parent e6715f3686
commit 43b3555da8
556 changed files with 214719 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#pragma once
#include "Font.h"
namespace lcd {
// helper so the user can just do 'new fontname' without having to know the parameters
extern const struct FontChar FDEF_ROBOTO_THIN_CHAR[];
class Font_ROBOTO_THIN10 : public Font {
public:
Font_ROBOTO_THIN10()
: Font(68,1,10,0,FDEF_ROBOTO_THIN_CHAR) {
}
};
}