Skip to main content
Amaresh
Associate III
February 22, 2022
Question

Im new to STMCubeIDE and TouchGFX. How do you display multiple Float decimals from main(Lets say 4 temp values)? I tried using xQueue but I'm pretty sure it's wrong because the values don't carry on to model. Is there a better way to send the values?

  • February 22, 2022
  • 2 replies
  • 635 views

..

This topic has been closed for replies.

2 replies

MM..1
Chief III
February 22, 2022

Use normal memory extern C struct

main_data.value1 and wildcard

snprintfFloat(UnicodeChar dst, uint16_t dstSize, const char format, const float value)

Amaresh
AmareshAuthor
Associate III
February 24, 2022

Hi,

Sorry i should have worded my question better. i already know how to display it from the ScreenView. i had problems sending multiple values together to the Model from the main. I have solved the issue by creating a new source file.