我想创建一个包含串口列表的“列表框”(使用controlP5 GUI库):目标是创建一个独立的应用程序,使用Processing与Arduino Uno进行通信,独立于我将要运行的操作系统使用(win,mac或linux),并选择(使用“listbox”)正确的串行端口与Arduino进行通信。 可能吗??
答案 0 :(得分:2)
ControlP5 cp5 = new ControlP5(this);
ListBox listBox = cp5.addListBox("serialPorts");
Serial serial;
String[] ports = Serial.list();
for (int i=0; i<ports.length; i++) {
listBox.addItem(ports[i]);
}
void controlEvent(ControlEvent theEvent) {
if(theEvent.isGroup() && theEvent.name().equals("myList")){
int val = (int)theEvent.group().value();
serial = new Serial(this, ports[val], 9600);
}
}
未经测试,但这是基本想法...