You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using an ESP32-WROOM-32D, Visual Studio Code, ST7789V SPI display. When calling printToSprite() anything with just the number one "1" will display a blank sprite. anything else works, numbers, letters, a "1" with another character. Both printToSprite("1") and printToSprite((String) (x)) where x == 1. The sprite is generated and appears to be the correct size, it's just blank.
Using an ESP32-WROOM-32D, Visual Studio Code, ST7789V SPI display. When calling printToSprite() anything with just the number one "1" will display a blank sprite. anything else works, numbers, letters, a "1" with another character. Both printToSprite("1") and printToSprite((String) (x)) where x == 1. The sprite is generated and appears to be the correct size, it's just blank.
tft.setTextDatum(TL_DATUM); spr.loadFont(AA_FONT_16_64); spr.setTextColor(TFT_BLACK, TFT_SKYBLUE); tft.setCursor(10, 10); spr.printToSprite("1");
tft.setTextDatum(TL_DATUM); spr.loadFont(AA_FONT_16_64); spr.setTextColor(TFT_BLACK, TFT_SKYBLUE); tft.setCursor(10, 10); spr.printToSprite("10");
The text was updated successfully, but these errors were encountered: