ESP32 + 1.44' SPI 128x128 + PIU mirror display. #943
-
Good Morning, hope everyone is having a great friday. I got my hands on a 1.44'128x128 SPI screen and decided to give it a try. Heres the manifest im using:
Test code:
Thank you in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Cool that you have this working. Every display is a little different, which is why the display driver has many configuration options. You probably need to adjust some of them. The ILI9341 driver (used here) documentation mentions the The garbage pixels on the edges can probably be fixed using Here's what configuring both of those would look like in your project's manifest.json: "defines": {
"ili9341": {
"flipx": true,
"column_offset": 4,
"row_offset": 4
}
} You can read more about the |
Beta Was this translation helpful? Give feedback.
Cool that you have this working. Every display is a little different, which is why the display driver has many configuration options. You probably need to adjust some of them.
The ILI9341 driver (used here) documentation mentions the
MODDEF_ILI9341_FLIPX
define, which is what you probably need to use here to reverse the mirroring.The garbage pixels on the edges can probably be fixed using
MODDEF_ILI9341_COLUMN_OFFSET
andMODDEF_ILI9341_ROW_OFFSET
. I can't quite determine the precise values from your photo f, so you'll have to experiment a bit.Here's what configuring both of those would look like in your project's manifest.json: