We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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
The text was updated successfully, but these errors were encountered:
Fixed color processing for drawBitmap1() API function #112
c41130b
@ChristianBrandtner
Thank you for reporting this issue. Color-related issue is fixed per c41130b commit. Bold style issue is under investigation.
Sorry, something went wrong.
lexus2k
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: