Si no te devuelve nada, es que o no tienes conectado el Arduino o tienes algo mal configurado, revisa las conexiones y asegúrate de que aparece el puerto serie del Arduino en el PC.
import processing.serial.*;
Serial port;
String buff = "";
int NEWLINE = 10; // Store the last 64 values received sowe can graph them.
int[] values = new int[64];
void setup() {
size(512, 256);
println("Available serial ports:");
println(Serial.list());
port = new Serial(this, Serial.list()[0], 9600);
// If you know the name of the port used by the Arduinoboard, you
// can specify it directly like this.
//port = new Serial(this, "COM1", 9600);
}
void draw() {
background(255);
stroke(53);
for (int i = 0; i < 63; i++) {
line(i * 8, 100 - values[i], (i + 1) * 8, 100 - values[i + 1]);
}
}