Open lukkass222 opened 2 months ago
ok, the display starts in inverted mode.
0x21, CMD_DELAY, 10, // INVON (21h): Display Inversion On"
That's interesting. All displays I had in my hands required inversion mode. The possible solution is to add invertmode API for st7789 displays.
Hello, I started testing the colors on the display7789, and I noticed that the colors were inverted. To confirm if the problem was with the display, I tested other libraries.
with tft_espi, everything worked fine.
with the Adafruit-ST7735, the colors were inverted, but in Adafruit there is the function
.invertDisplay(bool)
, puttingtft.invertDisplay(false);
fixes the problem.from that I did:
It's not ideal but it works