STM32 MCUs TouchGFX and GUI

Discuss STM32 and TouchGFX implementations, including configuration, debugging, and optimization.

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

TouchGFX documentation feedback

We wish to always improve our documentation. The best reviews and critics always come from the people that read it, so we would like to use this post to collect your thoughts and feedbacks. Please share what you like, dislike, what you think is missi...

Share your Custom Widgets!

When creating a UI project, you may need widgets that are not part of the TouchGFX library. To create your own graphical element, the TouchGFX team suggests using the Custom Container approach. Since TouchGFX 4.20 it is possible to export and import ...

Resolved! How to update textArea value in custom container?

Hi all,I have create a custom container named "tableLine":And using the "tableLine", I make a "table":in "tableLine.cpp", I write the following code:void tableLine::setLineContent(tableItem_t* item) { Unicode::snprintf(txtIDBuffer, TXTID_SIZE, "%s",...

Junde_0-1715329850891.png Junde_1-1715329996975.png Junde_2-1715330427148.png
Junde by Senior III
  • 1016 Views
  • 1 replies
  • 2 kudos

Resolved! Getting data from List Layout Elements

I am not very experienced with CPP or TouchGFX. I have created a Custom Container with a TextArea, a ToggleButton, and a couple of ScrollWheels. I have created a list layout, and used .add() to add two new instances of the Custom Container to my list...

CYBR by Associate II
  • 1042 Views
  • 2 replies
  • 0 kudos

See if the Init Code conversion is correct?

It received the initial code for the ILI9806E.The codes you received are as follows.write_command(0xFF); // Change to Page 1 CMD write_data(0xFF); write_data(0x98); write_data(0x06); write_data(0x04); write_data(0x01); write_command(0x08); //Output S...

PKunK.1 by Associate III
  • 1722 Views
  • 5 replies
  • 0 kudos

Resolved! Resize string variable

Hi i have this code: char string[6]="Hello";char string1[6]="World"; touchgfx::Unicode::UnicodeChar dst[6];touchgfx::Unicode::UnicodeChar dst1[6];touchgfx::Unicode::UnicodeChar txtAreaBuffer1[100]; Unicode::strncpy(dst, string, 6);Unicode::strncpy(ds...

Schamann by Associate II
  • 877 Views
  • 3 replies
  • 0 kudos

Resolved! Portrait readBMP24File

My problems with Portrait orientation don't end.I have a very large project where changing the architecture and function calls costs much more than changing a single function.My problem is how?The function is readBMP24File.In my project it is loaded ...