mirror of
https://github.com/eddyem/tsys01.git
synced 2026-03-22 01:31:05 +03:00
Add displaying T @ oLED screen
This commit is contained in:
17
STM32/Tcalc_screen/ssd1306_fonts.h
Normal file
17
STM32/Tcalc_screen/ssd1306_fonts.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#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__
|
||||
Reference in New Issue
Block a user