Setting up lvgl_micropython on the "Cheap Yellow Board" (CYB) aka Sunton ESP32 2432S028R 2.8" resistive touch LCD board #281
gitcnd
started this conversation in
Board Specific
Replies: 1 comment
-
with the XPT touch you ALWAYS need to run the calibration routine. Do not set the swap_xy parameter and simply initilize the driver then add this code directly below the driver startup..
The calibration data is automatically saved into NVS so it is persistent between restarts. If you remove erasing the ESP32 prior to flashing firmware the changes will even be persistent between flashes of new firmware. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Setting up lvgl_micropython on the "Cheap Yellow Board" (CYB) aka Sunton ESP32 2432S028R 2.8" resistive touch LCD board #281
The "Cheap Yellow Board" is a popular screen. There's 3 versions (see https://github.com/rzeldent/platformio-espressif32-sunton/blob/main/esp32-2432S028R.json for differences). Below is how to set up the original or v2 boards, which use the ili9341 display driver and xpt2046 touch chips (curiously, my board had "7789" on the box, but it is not a st7789 driver.
Below is how I got the screen and touch working on my ESP32 2432S028
Build:-
python3 make.py esp32 BOARD=ESP32_GENERIC BOARD_VARIANT=SPIRAM DISPLAY=ili9341 INDEV=xpt2046
Note: the xpt2046 driver is my modified one with "swapxy" feature added, which it does not work without.
(Optional) backup your flash before overwriting it:
export PORT=/dev/ttyS6 esptool.py --port $PORT read_flash 0x0 0x400000 lcd_2.8inch_ESP32-2432S028R .bin
Flash:-
esptool.py --port $PORT write_flash 0x0 lvgl_micropy_ESP32_GENERIC-SPIRAM-4.bin
Upload a test:-
ampy --port $PORT put lvgl_test_2432S028R.py
Run it:-
mcu_serial.pl -port $PORT import lvgl_test_2432S028R
The test program:
Screenshots:-
Beta Was this translation helpful? Give feedback.
All reactions