0

シリアルポートリストを含む「リストボックス」(controlP5 GUI ライブラリを使用) を作成したいと思います: 目標は、使用する OS とは無関係に、Processing を使用して Arduino Uno と通信するスタンドアロンアプリを作成することです ( win、mac、または linux) を選択し、(「リストボックス」で) Arduino と通信するための正しいシリアル ポートを選択します。出来ますか??

4

1 に答える 1

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);
    }
}

テストされていませんが、それが基本的な考え方です...

于 2012-10-06T05:28:44.100 に答える