19 lines
533 B
C
19 lines
533 B
C
#ifndef FONT_MINI_H
|
|
#define FONT_MINI_H
|
|
|
|
#include <stdint.h>
|
|
|
|
// ## 1. Konstanten ##
|
|
#define FONT_WIDTH 16
|
|
#define FONT_HEIGHT 32
|
|
#define FONT_WIDTH_BYTES 2
|
|
|
|
// ## 2. Globale Variablen (mit "extern") ##
|
|
//extern const uint8_t fullscreen_allArray_LEN;
|
|
//extern const unsigned char* fullscreen_allArray[36];
|
|
|
|
// ## 3. Funktions-Prototypen ##
|
|
//void create_char(char character, uint8_t* framebuffer, uint8_t scale);
|
|
void draw_char(char character, uint8_t* framebuffer, int fb_width, int fb_height, uint8_t scale);
|
|
|
|
#endif // FONT_MINI_H
|