fonts.h 311 B

12345678910111213141516171819
  1. #ifndef __FONTS_H__
  2. #define __FONTS_H__
  3. #include <stdint.h>
  4. typedef struct {
  5. const uint8_t width;
  6. const uint8_t height;
  7. const uint16_t *data;
  8. } FontDef;
  9. extern FontDef Font_7x10;
  10. extern FontDef Font_11x18;
  11. extern FontDef Font_16x26;
  12. extern FontDef LiberM_7x10;
  13. #define USE_UTF8
  14. #endif // __FONTS_H__