
/*
You use this code to identify the USB port
*/

import processing.serial.*;

Serial myPort; // The serial port

void setup () {
size(100, 100); // set up the window to whatever size you want

printArray(Serial.list()); // List all the available serial ports
String portName = Serial.list()[5]; // set the number of your serial port!
myPort = new Serial(this, portName, 9600);



}
