This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import processing.serial.*; | |
Serial arduino; | |
void setup() { | |
// Create a canvas | |
size( 800, 600 ); | |
// Get a list of serial ports | |
String ports[] = Serial.list(); | |
int id = 0; |