lcdgfx icon indicating copy to clipboard operation
lcdgfx copied to clipboard

Driver for LCD displays running on Arduino/Avr/ESP32/Linux (including Rasperry) platforms

Results 35 lcdgfx issues
Sort by recently updated
recently updated
newest added

Hi I have question about what app for LCD font generator can be used to generate new type 0 fonts. Can I use the free LCD font generator from MikroC?...

question
waiting_response

I have been using display.printFixedN(... FONT_SIZE_2X) and display.printFixed(..., STYLE_BOLD) with the SSD1306. However, with the larger SSD1327 this seems not to work. In short: It would be helpful when using...

enhancement

I'm using a SSD1531 display and the LCDGFX with a ESP32 and the linux simulator, with a lot of fun... Your lib is really good. :) I can't see support...

enhancement

File src/lcd_hal/esp/esp32_spi.cpp line 62: if ( m_cs >= 0 ) { lcd_gpioMode(m_cs, LCD_GPIO_OUTPUT); lcd_gpioWrite(**m_clk,** LCD_HIGH); } About 'm_clk' ,this is a clerical error or correct?

bug

An excellent library! Does this library support 256x64 types of displays? How? Can you give me a hint? Thank you for your efforts!

question
waiting_response

**Describe the bug** DisplaySH1106_128x64_I2C::begin() crashes when external interrupts are enabled. **To Reproduce** Steps to reproduce the behavior: 1. Create arduino sketch with following code ``` #include #include "lcdgfx.h" #include "lcdgfx_gui.h"...

bug
waiting_response

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,...

bug
waiting_response

**Describe the bug** Arduino IDE 2.2.1 fresh installed, fresh installed lcdgfx library, st7735 and ili9341 demos not compile for esp8266 board with this error: libraries\lcdgfx\src/lcd_hal/esp/esp32_spi.h:34:10: fatal error: driver/spi_master.h: No such...

bug

I have started the attempted integration of LCDGFX with Nanoengine enabled for the ArduinoMenu Library. I have to initialize the menu and pass the display and nanoengine; NanoEngine1 engine(display); I...

So we have been positioning text and graphics on our SSD1306 OLED with the library. When we expect to move text to say 45, 32 it doesn't appear that it...

question