Skip to content

Commit 147cacc

Browse files
authored
Merge pull request #46 from tore-espressif/fix/wrover-kit-display-inversion
Fix/wrover kit display inversion
2 parents 3e1c6f3 + 82b738e commit 147cacc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lvgl_tft/ili9341.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ static void ili9341_set_orientation(uint8_t orientation)
229229
#if defined CONFIG_LV_PREDEFINED_DISPLAY_M5STACK
230230
uint8_t data[] = {0x68, 0x68, 0x08, 0x08};
231231
#elif defined (CONFIG_LV_PREDEFINED_DISPLAY_WROVER4)
232-
uint8_t data[] = {0x4C, 0x88, 0x28, 0xE8};
232+
uint8_t data[] = {0x6C, 0xEC, 0xCC, 0x4C};
233233
#elif defined (CONFIG_LV_PREDEFINED_DISPLAY_NONE)
234234
uint8_t data[] = {0x48, 0x88, 0x28, 0xE8};
235235
#endif

0 commit comments

Comments
 (0)