41 lines
1.4 KiB
C
41 lines
1.4 KiB
C
// oled/font.h
|
|
|
|
#ifndef FONT_H
|
|
#define FONT_H
|
|
|
|
#include <stdint.h>
|
|
|
|
// Deklarationen der Bitmaps mit 'extern'
|
|
// 'extern' sagt dem Compiler: "Diese Variable existiert, aber sie ist in einer anderen .c-Datei definiert."
|
|
extern const uint8_t oled_fullscreen_A[];
|
|
extern const uint8_t oled_fullscreen_B[];
|
|
extern const uint8_t oled_fullscreen_C[];
|
|
extern const uint8_t oled_fullscreen_D[];
|
|
extern const uint8_t oled_fullscreen_E[];
|
|
extern const uint8_t oled_fullscreen_F[];
|
|
extern const uint8_t oled_fullscreen_G[];
|
|
extern const uint8_t oled_fullscreen_H[];
|
|
extern const uint8_t oled_fullscreen_I[];
|
|
extern const uint8_t oled_fullscreen_J[];
|
|
extern const uint8_t oled_fullscreen_K[];
|
|
extern const uint8_t oled_fullscreen_L[];
|
|
extern const uint8_t oled_fullscreen_M[];
|
|
extern const uint8_t oled_fullscreen_N[];
|
|
extern const uint8_t oled_fullscreen_O[];
|
|
extern const uint8_t oled_fullscreen_P[];
|
|
extern const uint8_t oled_fullscreen_Q[];
|
|
extern const uint8_t oled_fullscreen_R[];
|
|
extern const uint8_t oled_fullscreen_S[];
|
|
extern const uint8_t oled_fullscreen_T[];
|
|
extern const uint8_t oled_fullscreen_U[];
|
|
extern const uint8_t oled_fullscreen_V[];
|
|
extern const uint8_t oled_fullscreen_W[];
|
|
extern const uint8_t oled_fullscreen_Y[];
|
|
extern const uint8_t oled_fullscreen_X[];
|
|
extern const uint8_t oled_fullscreen_Z[];
|
|
|
|
// Falls du diese auch hast:
|
|
extern const uint8_t oled_fullscreen_allArray_LEN;
|
|
extern const uint8_t* oled_fullscreen_allArray[];
|
|
|
|
#endif // FONT_H
|