Message received by Bluetooth uart

Help me
I am making an IOT application which uses bluetoothLE to receive data from microbit card using bluetooth UART service. the problem that the received data is displayed as a list of bytes. example [97,102,114]. how to display the text actually sent?

Please search the forum before asking a question. Same question here, different solutions.

1 Like
1 Like

you can use the AsciiConversion.aix extension https://community.appinventor.mit.edu/uploads/short-url/pfdDefFQUxeffRFScKY8ifXfoVK.aix

and call the Conversion function passing the list of ascii codes as parameters. This function will return the text corresponding to this list

here is the documentation of the extension
ASCII conversion extension

2 Likes

I think this extension makes the code too easy

1 Like

Perfect this method works well
Thank you for this method very simple

1 Like