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! TouchGFX source code

Hi,I am working on a project where using external bin lib files is forbidden for safety and security reasons. Is the TouchGFX source code available ? Do we need to buy a license or something like that ?Thanks,Olivier

STMF469I DISCO TouchGFX demo problem

Hi,I have compiled and load the demo to the board with STMCubeIDE 1.4.0 on Linux.When I start the board, it seems that the display is correct during a quarter of second or less.Then the colors are getting weird, like if there is a palette problem.Doe...

Resolved! animatedImage display issue with TouchGFX

Hello,I'm currently developing an application on a STM32H753VT6 with touchGFX and I have an issue with an animatedImage Widget. I want to create a gif with 12 bells images.The problem is that the bottom of the animation is (sometimes partially) missi...

0693W0000059iijQAA.jpg
AJT141 by Associate III
  • 1200 Views
  • 5 replies
  • 0 kudos

Resolved! I want to add a box dynamically on a button click in the buttoncallbackhandler() function.

So I tried creating a box in the buttoncallback function as follows : touchgfx::Box * box_temp = new touchgfx::Box();    box_temp->setPosition(170,180,500,220);    box_temp->setColor(touchgfx::Color::getColorFrom24BitRGB(255,255,255));    box_t...