fonts.h 294 B

123456789101112131415161718
  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. #endif // __FONTS_H__