mirror of
https://github.com/caperren/school_archives.git
synced 2025-11-09 13:41:13 +00:00
Added EPD business card project to archives.
This commit is contained in:
@@ -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) {
|
||||
}
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user