
Here is an example.
For your convenience I also attach an .aia
There are two global variables: datareceived and dataList. Global dataReceived contains the data as you received it from your Arduino, with an example as you gave it.
The global dataList contains a list of key, value pairs where the keys are AD1 ,AD2 and so on, and the values are of course the values you recieved.
There are two procedures, one is
splitMessages, that you could use more generally to slit a string with start and end delimiters, the other is just
split, to split each message in a key value pair. This one is a bit tricky, because there are blanks before and after the keys, which must be trimmed.
After the key, value list is built, you can easily set the labels by using the
look up in pairs list block.
Have fun with it, and promise me to study lists and text blocks. There are enough tutorials about both.
Cheers, Ghica.