Hello all!
I’m having some difficulties with RS232 data from my Teensy3.1.
My teensy is sending data packs of 512 values containing increment# and value. They are separated by a ‘space’.
So one loop cycle of my teensy gives me something like this:
0 value0
1 value1
2 value2
…
…
…
511 value511
Using AsString(Raw) after RS232 perfectly delivers me those pairs into vvvv.
Now I’d like to put them into a spread where valueXYZ is located at indexXYZ.
Could someone please kickstart my brain?