Arduino-Processing连载。send/Serial.获得互动

Arduino-Processing Serial.send/Serial.get interaction

我正在尝试让我的 Arduino 环境发送数据以处理数据可视化项目。

我已经设法使握手正常工作,并且可以 Serial.println(...) 将我需要的数据从 Arduino 打印到处理控制台。我现在需要的是以某种方式使用该数据来更改 Processing 中的变量。

我知道我在标题中提到的方法都不存在于序列号 class 中,但我希望有人知道如何管理此功能。

提前致谢!

我会假设你在处理中使用serialEvent方法。示例代码:

String val = myPort.readStringUntil('\n');

其中 myPort 是您的 android 设备所在的端口。