diff --git a/lib/fonts.h b/lib/fonts.h new file mode 100644 index 0000000000000000000000000000000000000000..554b31878c3ee95e010abcd90f89f5ec34ee3c88 --- /dev/null +++ b/lib/fonts.h @@ -0,0 +1,17 @@ +/* vim: set ai et ts=4 sw=4: */ +#ifndef __FONTS_H__ +#define __FONTS_H__ + +#include <stdint.h> + +typedef struct { + const uint8_t width; + uint8_t height; + const uint16_t *data; +} FontDef; + + +extern FontDef Font_16x26; +extern const uint8_t arducam_logo[25608]; + +#endif // __FONTS_H__