STM32 MCUs TouchGFX and GUI

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

X-CUBE-TOUCHGFX 4.24.0 is out!

TouchGFX 4.24.0 is now out. Please follow this link to download it. 4.24.0 Release details: Release date: June 6th, 2024 New TouchGFX Designer Features: Added a QR Code widget.Added RGB Compression for images. New TouchGFX Core Features:  Added RG...

LouisB by ST Employee
  • 969 Views
  • 0 replies
  • 2 kudos

TouchGFX Academy launch announcement!

Dear Community, We're excited to announce the creation of the TouchGFX Academy! The TouchGFX Academy is a new place to learn TouchGFX with concrete examples and to find answers to your questions when developing your UI. It includes tutorials of cour...

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::BoxWithBorder constructor

Hi,I don't get why I can't set the border thickness/color directly when creating the BoxWithBorder object._boxWithBorder3(50, 50, touchgfx::Color::getColorFrom24BitRGB(150, 150, 250), touchgfx::Color::getColorFrom24BitRGB(0, 0, 0), 5,50)Indeed, it do...

GMeur by Senior
  • 338 Views
  • 2 replies
  • 0 kudos

STemWin Touch Driver (ADS7843) problem

Hello All,I am setting up STemWin on STM32F103VE MCU. The graphical part is all setup and working fine!The problem is the Builtin touch screen driver of STemWin. I have gone through the manual and created the low level SPI communication part and test...

0690X000008wKHsQAM.jpg

Resolved! How to create a blocking message box in touchGFX?

We have an existing embedded application with older GUI which is being ported to TGFX. For keeping the old logic, we want to display a blocking message box and wait for user response (button click) in a widget callback(GUI button callback). The probl...

zzzzz by Senior
  • 1268 Views
  • 14 replies
  • 0 kudos

Resolved! I want to load a jpg image using touchgfx. I tried the JPEG_file_loader example but it doesn't compile either. Anybody can help me? Thanks

void Screen1View::setupScreen(){   FILE* f = fopen("C:\\Temp\\image.jpg", "rb");   uint16_t width, height;   JPEGFileLoader::getJPEGDimensions(f, width, height);   BitmapId bmpId;   //create dynamic bitmap matching file dimensions and in format match...

Mvill.17 by Associate III
  • 592 Views
  • 1 replies
  • 0 kudos

Resolved! setAction with an additional parameter

Hi,When using the 'setAction' function of the class Button, why can't I pass a callback object taking one more parameter than just the "const touchgfx::AbstractButtonContainer&"?Here's my CallBack object with its corresponding handler function:Callba...

GMeur by Senior
  • 302 Views
  • 1 replies
  • 0 kudos