Hello,
I use resources and everything works there.
Now I need to display text from code and I came across that the result of these commands is
23???
what is wrong with this code? What do I need to set where?
int intvalue_ = 23;
std::string stringvalue_ = "Hello";
Unicode::snprintf(textAreaBuffer, TEXTAREA_SIZE, "%d %s", intvalue_, stringvalue_ );
textArea.setWildcard(textAreaBuffer);
textArea has Typography BigFont selected in the designer
I have Wildcard Ranges in the Typography settings for BigFont
0-9,a-z,A-Z
It will definitely be something small.
Can you advise?
I found this sample, but even here the question mark appears
Unicode::UnicodeChar a[] = {0x00B0,0};
uint16_t degree = 28;
Unicode::snprintf(textArea1Buffer, TEXTAREA1_SIZE, "%d %s", degree, a);
textArea1.invalidate();