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