esp32 firmware for a toaster reflow oven WIP!!!!!
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/**
|
|
* UTF-8 capable bitmap font
|
|
*
|
|
* Created on 2020/01/04.
|
|
*/
|
|
|
|
#ifndef GFX_FONT_H
|
|
#define GFX_FONT_H
|
|
|
|
#include "font.h"
|
|
#include "utf8.h"
|
|
#include <stdint.h>
|
|
|
|
struct FontGraphic {
|
|
uint8_t columns[5];
|
|
};
|
|
|
|
const struct FontGraphic *Font_GetSymbol(struct Utf8Char ch);
|
|
|
|
#endif //GFX_FONT_H
|
|
|