ESP32-S3 Elecrow DIS07050H 5" ESP-IDF build? Anyone?

I want to have a working Squareline build under ESP-IDF for the Elecrow 5" panel (DIS07050H).

The existing Elecrow 5" example does not build under ESP-IDF, just Arduino. I can’t find any example Squareline projects that build under ESP-IDF , using ESP32-S3, using ILI6122.

Does anyone have an example ESP32-S3 / ILI6122 project that works under current ESP-IDF, LVGL, Squareline?

Others

SLS 1.5.0
Building under MacOS / VS + ESP-IDF 5.
Target Hardware : Elecrow DIS07050H

Hi,

For this board, there is only LVGL 8.3.11 support available for ESP IDF. You can select this board from the launcher.

OK - is there a project framework that compiles under ESP-IDF? The export doesn’t seem to produce a working project under ESP-IDF, just a components folder.

Hi, when exporting, did you use the Export template project or the export UI files?

Export template.

Do you have ANY examples that export a working project to ESP-IDF 5.4? I’m using SLS 1.5…

We have tested a working example that you can export from SquareLine Studio for DIS07050H ESP-IDF. At this time SquareLine Studio supports ESP-IDF4.4.6

The README.md file contains the prerequisites.
You need to install ESP-IDF4.4.6 https://dl.espressif.com/dl/idf-installer/esp-idf-tools-setup-offline-4.4.6.exe

The installer provides an ESP-IDF environment where you can use to build the project from command:

edit the provided build.bat, so it contains the followings:
rd build /S /Q
rem md build
rem cd build
idf.py build
rem cmake -G “Ninja” … -DCMAKE_BUILD_TYPE=Release #ninja -j 4

run build.bat and when done,

edit the provided flash.bat, so it contains the followings:

idf.py flash monitor
esptool.py write_flash 0x10000 build_UI_PROJECT_NAME_.bin

finally run flash.bat
Hope this help!