mirror of
https://github.com/eddyem/tsys01.git
synced 2025-12-06 18:45:15 +03:00
18 lines
393 B
C
18 lines
393 B
C
#include <stdint.h>
|
|
|
|
#ifndef __SSD1306_FONTS_H__
|
|
#define __SSD1306_FONTS_H__
|
|
|
|
typedef struct {
|
|
const uint8_t FontWidth; /*!< Font width in pixels */
|
|
uint8_t FontHeight; /*!< Font height in pixels */
|
|
const uint16_t *data; /*!< Pointer to data font data array */
|
|
} FontDef;
|
|
|
|
|
|
extern FontDef Font_7x10;
|
|
extern FontDef Font_11x18;
|
|
extern FontDef Font_16x26;
|
|
|
|
#endif // __SSD1306_FONTS_H__
|