File oled_fonts.h¶
File List > external-docs > libDaisy > src > util > oled_fonts.h
Go to the documentation of this file
Source Code¶
#pragma once
#ifndef DSY_OLED_FONTS_H
#define DSY_OLED_FONTS_H
#include <stdint.h>
typedef struct
{
const uint8_t FontWidth;
uint8_t FontHeight;
const uint16_t *data;
} FontDef;
extern FontDef Font_4x6;
extern FontDef Font_4x8;
extern FontDef Font_5x8;
extern FontDef Font_6x7;
extern FontDef Font_6x8;
extern FontDef Font_7x10;
extern FontDef Font_11x18;
extern FontDef Font_16x26;
#endif