diff options
| author | gamerdonkey | 2024-09-14 14:48:59 -0500 |
|---|---|---|
| committer | gamerdonkey | 2024-09-14 14:48:59 -0500 |
| commit | 35ff74c9be46e16030d1184a506451e1d3805c25 (patch) | |
| tree | 0ee143a6a3ddf74ee985165cb10a1c44d9b8377f /main/gfxfont.h | |
| parent | 5d3f7c6d67dd70b644c5527b07b72f03459413dd (diff) | |
| download | esp32-inova-led-controller-35ff74c9be46e16030d1184a506451e1d3805c25.tar.gz esp32-inova-led-controller-35ff74c9be46e16030d1184a506451e1d3805c25.tar.bz2 esp32-inova-led-controller-35ff74c9be46e16030d1184a506451e1d3805c25.zip | |
First attempt at integrating Adafruit_GFX and converting to C++
Diffstat (limited to 'main/gfxfont.h')
| -rw-r--r-- | main/gfxfont.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/main/gfxfont.h b/main/gfxfont.h new file mode 100644 index 0000000..175bad6 --- /dev/null +++ b/main/gfxfont.h @@ -0,0 +1,29 @@ +// Font structures for newer Adafruit_GFX (1.1 and later). +// Example fonts are included in 'Fonts' directory. +// To use a font in your Arduino sketch, #include the corresponding .h +// file and pass address of GFXfont struct to setFont(). Pass NULL to +// revert to 'classic' fixed-space bitmap font. + +#ifndef _GFXFONT_H_ +#define _GFXFONT_H_ + +/// Font data stored PER GLYPH +typedef struct { + uint16_t bitmapOffset; ///< Pointer into GFXfont->bitmap + uint8_t width; ///< Bitmap dimensions in pixels + uint8_t height; ///< Bitmap dimensions in pixels + uint8_t xAdvance; ///< Distance to advance cursor (x axis) + int8_t xOffset; ///< X dist from cursor pos to UL corner + int8_t yOffset; ///< Y dist from cursor pos to UL corner +} GFXglyph; + +/// Data stored for FONT AS A WHOLE +typedef struct { + uint8_t *bitmap; ///< Glyph bitmaps, concatenated + GFXglyph *glyph; ///< Glyph array + uint16_t first; ///< ASCII extents (first char) + uint16_t last; ///< ASCII extents (last char) + uint8_t yAdvance; ///< Newline distance (y axis) +} GFXfont; + +#endif // _GFXFONT_H_ |
