Skip to content

ESP32 + 1.44' SPI 128x128 + PIU mirror display. #943

Discussion options

You must be logged in to vote

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 and MODDEF_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:

"defines": {
	"ili9341": {
		"flipx": true,
		"column_offset"

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@AlexLucardGoodman
Comment options

@phoddie
Comment options

Answer selected by AlexLucardGoodman
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants