JamesHamilton4
JamesHamilton4
``` C++ #include #include #ifdef U8X8_HAVE_HW_SPI #include #endif U8X8_SSD1306_128X64_NONAME_HW_I2C u8x8(/* reset=*/ U8X8_PIN_NONE, /* clock=*/ SCL, /* data=*/ SDA); // pin remapping with ESP8266 HW I2C #define U8LOG_WIDTH 16 #define U8LOG_HEIGHT...
I've recreated the problem with your simple example, because my own code was too long. By removing the second instance of "u8x8log.print("\n");" everything is ok. But to have two "u8x8log.print("\n");",...
Same problem occurs if you use to u8x8log.println(); to create the blank line. For me, I can only use u8x8log.println(" "); to create a blank line without glitches.
Also, in case it's information that is of use, if I change: #define U8LOG_HEIGHT 8 to #define U8LOG_HEIGHT 7 the glitches appear at the bottom, rather than the top. But...