28 lines
485 B
C
28 lines
485 B
C
/*
|
|
ST7565 LCD Font library
|
|
|
|
Anton Mukhin, 2023
|
|
*/
|
|
|
|
#ifndef INC_FONTS_H_
|
|
#define INC_FONTS_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#define FONT_HEADER 6
|
|
|
|
/* Font header map:
|
|
uint8_t packed; // Is it a packed font?
|
|
uint8_t width; // Font width in pixels
|
|
uint8_t height; // Font height in pixels
|
|
uint8_t space; // Space between characters
|
|
uint8_t first; // First character code
|
|
uint8_t last; // Last character code
|
|
*/
|
|
|
|
extern const uint8_t font_5x7_vw[];
|
|
|
|
|
|
|
|
#endif /* INC_FONTS_H_ */
|