How to print the text in the app wizard

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

How to print the text in the app wizard

3,236件の閲覧回数
mathan
Contributor I

Hello Everyone I have build a Gui using the app wizard now to like to print the data of the received data of the uart to the gui i don't know how to print the data of the uart in my gui can someone please help me

タグ(1)
0 件の賞賛
返信
4 返答(返信)

3,225件の閲覧回数
mathan
Contributor I

in detail i need to know How to change the text of the app wizard while during the program time for example i had a text box with text"on" if i press the button on the ra6m3 board it should change the text on the gui to "off" how to implement this

0 件の賞賛
返信

3,194件の閲覧回数
Harry_Zhang
NXP Employee
NXP Employee

Hi @mathan 

May I ask which chip you are using?

BR

Hang

0 件の賞賛
返信

3,190件の閲覧回数
mathan
Contributor I

I am using RA6M3 board i have solved the issue of writing the text to the text box i have done with  APPW_SetText(ID_SCREEN_WIFI, ID_TEXT_01, RxData); Now can you please help me to add a text to the listbox 

0 件の賞賛
返信

3,145件の閲覧回数
Harry_Zhang
NXP Employee
NXP Employee

Hi @mathan 

To add new text to the listbox dynamically during runtime, you can use the APPW_SetItemText() function or equivalent to update the content of the listbox.
Here’s an example of how you can do it:

// Assuming RxData contains the data received from UART
char RxData[] = "New UART Data";

// Add the received UART data to the listbox
APPW_SetItemText(ID_SCREEN_MAIN, ID_LISTBOX_01, RxData);

BR

Hang

0 件の賞賛
返信