Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Problem with "printFixedPgm" #112

Open
ChristianBrandtner opened this issue Feb 5, 2024 · 1 comment
Open

Problem with "printFixedPgm" #112

ChristianBrandtner opened this issue Feb 5, 2024 · 1 comment
Assignees
Labels
bug Something isn't working waiting_response

Comments

@ChristianBrandtner
Copy link

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:
20240205_085617

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

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

@lexus2k
Copy link
Owner

lexus2k commented Feb 10, 2024

@ChristianBrandtner

Thank you for reporting this issue. Color-related issue is fixed per c41130b commit.
Bold style issue is under investigation.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working waiting_response
Projects
None yet
Development

No branches or pull requests

2 participants