Unable to change the color depth from 16bit swap

What do you want to achieve?

change the color depth to normal 16bit

What have you tried so far?

changing the color depth

Screenshot or video

Others

  • SquareLine Studio version:
    guessing 1.1.1
  • Operating system:
    Windows 11
  • Target hardware:
    Espressif

It’s because that board supports only 16 bit swapped format.

I found myself with this problem initially as well. I had a generic ESP32 dev board and picked that SLS board as it seemed the most generic Espressif option.

You can usually swap the 16 bit format at the driver end - for example, if you are using TFT_eSPI as I was, changing from
tft.pushColors(&color_p->full, w * h, true) to tft.pushColors(&color_p->full, w * h, false) fixed it for me.

Yes or you can edit project file in text editor…
But better question is, what format is better 16 or 16swap and why.
For example is speed effective …