-
-
Notifications
You must be signed in to change notification settings - Fork 62
Open
Labels
Description
there is a bug in "printFixedPgm"
Code:
static const char text[] PROGMEM = "PROGMEM Text";
static void textDemo()
{
display.setFixedFont( ssd1306xled_font6x8 );
display.clear();
display.invertColors();
display.printFixed(0, 32, "Inverted bold", STYLE_BOLD);
display.printFixedPgm(0, 40, text, STYLE_BOLD);
display.invertColors();
}
on Display PROGMEM Text is white:

if not invertColors, PROGMEM Text: there are pixel missing:

My hardware Ardunio Nano, SSD1306, lcdgfx version 1.1.5, Arduino Ide 1.8.19, OS Debian 12 bookworm