Thomas Kolb
d5357b2021
To accomplish this, the following changes were made: - Added an image-scrolling animation - Implemented a bitmap font engine to generate an image from text - On startup, an image-scrolling animation is set up with an image generated from the local IP address
13 lines
262 B
C
13 lines
262 B
C
#ifndef FONT16_DATA_H
|
|
#define FONT16_DATA_H
|
|
|
|
#include <stdint.h>
|
|
|
|
extern const uint16_t font_data[];
|
|
extern const uint16_t font_pos[];
|
|
extern const uint8_t font_width[];
|
|
extern const uint8_t font_lut[];
|
|
extern const uint8_t font_height;
|
|
|
|
#endif // FONT16_DATA_H
|