hello, once again confused by byte arrays etc.
So if I send this via a serial:20,30,40,50
and I split it into a byte array
I get the expected result. How would I get the values into an int (or an int array)? Nothing I have tried seems to make any sense.
So if I send this via a serial:20,30,40,50
and I split it into a byte array
B4X:
For Each x() As Byte In bc.Split(d,",")
log((x)
Next