Touch sensor tinker kit & Processing

I am experiencing trouble with the Arduino - Processing comunication using the touch sensor..
in particular, i can't figure out the code in processing..
For the arduino code i used the standard one that come with the sensor..
in processing im using this:

import processing.serial.*;
Serial myPort;

void setup(){
println(Serial.list());
myPort = new Serial(this, Serial.list()[0], 115200);
myPort.bufferUntil('\n');
frameRate(2);
}

void draw(){
while (myPort.available() > 0) {
String inString = myPort.readString();
print(inString+" | ");
}
}

am i doing something wrong?
Thanks!!

am i doing something wrong?

Yes. It's obvious that you didn't read the "How to post" sticky at the top of this forum. Give that a read, and I'm sure some things will occur to you that make you want to revise your post. Or add another post.

Or even post in the correct forum!

Mark