Quote Originally Posted by mpgmike View Post
First thought is that you need a generic Buffer sized to the length you want to send. For example:
Currently I'm doing it this way:

Code:
topline	var byte [18]
topline[0]=88 
topline[1]=64 
topline[2]=192 
topline[3]=0 
topline[4]=255
topline[5]=200 
topline[6]=0
topline[7]=88 
topline[8]=104
topline[9]=40
topline[10]=64 
topline[11]=24 
topline[12]=0
topline[13]=255
topline[14]=152 
topline[15]=72 
topline[16]=40
topline[17]=32
But as I can see, with ARRAYWRITE it would be much simpler, thanks!