hello to all of you, is there a way to have a array and give each element of the array a special name? An example:
float my_array[20]; . . for(i=0;i<20;i++) send(my_array[i]; . .
this fits perfect to my requirements
Then why not just declare these three variables instead of an array?
Or make them fields in a struct, so you can send the entire block of three variables with one call to the send() routine.