我想从处理中接收一个字符串到 arduino。我正在写一个字符串(基本上是一个字符串形式的单个数字数组,例如:<0213> 是一个数组:0 2 1 3)。我可以将其写入端口,但如何在 arduino 上接收它?以下代码将发送到 arduino。
int[] send={0,2,3,1};
myPort =new Serial(this,"/dev/ttyACM0", 9600);
String theStg = "<" + nf(send[0], 3) +
" " + nf(send[1], 3) +
" " + nf(send[2], 3) +
" " + nf(send[3], 3) +
">";
myPort.write(theStg);