User Activity

Hello i have an Arduino project. I need create an array of words from sentence: char sText[] = "This is a long text."; int x = 0; String arr[5]; //split by space char *token = strtok(sText, " "); while (token != NULL) { arr[x] = token; x++...
Hello i have this condition:, if (oOK == true) {flexButton.setText(TypedText(T_ENTER));} else {flexButton.setText(TypedText(T_CLOSE));}flexButton.invalidateContent(); Exist reverse function, or how i can read fLexButton text value?like: Char fbString...
Hi i have this code: char string[6]="Hello";char string1[6]="World"; touchgfx::Unicode::UnicodeChar dst[6];touchgfx::Unicode::UnicodeChar dst1[6];touchgfx::Unicode::UnicodeChar txtAreaBuffer1[100]; Unicode::strncpy(dst, string, 6);Unicode::strncpy(ds...
Hello, I try to do my own keyboard.My idea: when click on shift button (red a, btnShift) i want replace big letters with small. All buttons are FlexButtonCan I use the Action Execute C++ code ?like this:btnA.setText(TypedText('a'));but not woking now...