esp32-sk6812/include/font16_data.h
Thomas Kolb d5357b2021 Show IP address on startup
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
2019-12-23 19:56:33 +01:00

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