2019-11-25 09:41 PM
I'm pretty new to STM32 & TouchGFX. I'm building a device based on the STM32H743 with 8MB SDRAM & either 64 or 128MB QSPI FLASH. I will also embed a 2GB uSD card for extra storage.
My initial idea is to have a few skins available and stored as extra data on the QSPI FLASH and additional ones that could be downloaded by users and then have the function that return that images diverted to the area & offset to the additional skin. I'd also probably need to address text color and screen backgrounds.
2019-11-29 03:38 AM
You could use a Dynamic Bitmap to load the data from SD-Card and use that as a Bitmap for your Button. Same for your backgrounds.
Colors are easy since you just have to map user selection into some RGB value that you set on the textareas.
2019-12-05 11:09 PM
Thank you Martin.
I'm new to TouchGFX and the STM32 in general, but loving it so far.