Add displaying T @ oLED screen

This commit is contained in:
eddyem
2018-05-28 22:48:44 +03:00
parent 87784ffbda
commit 5741d2d2a7
19 changed files with 6283 additions and 0 deletions

View 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__