[SOLVED] How to print text string on the screen ?
I am able to print numbers using Wildcard Characters = "0123456789-" and Wildcard Range = "0-9" but I cannot print normal test like "IR event received".
I see only the first character so "I" or "I????????", why ?
test1
Unicode::snprintf(IRBuffer, IR_SIZE, "%s", "IR event received");
test2
Unicode::strncpy(IRBuffer, "IR event received %i", 200);
test3
touchgfx::Unicode::UnicodeChar tmpfmt[200];
touchgfx::Unicode::strncpy(tmpfmt, "IR event received %i", 200);
touchgfx::Unicode::snprintf(IRBuffer, IR_SIZE, tmpfmt);
IR.setWildcard(IRBuffer);
IR.resizeToCurrentText();
IR.invalidate();


