My first encounter with Processing!

Sorry, didn't mean to make a smiley face, it was just part of the code.

I'll post the arduino code:

void setup(){
  Serial.begin(9600);
}

void loop(){
  Serial.write(analogRead(A1) / 4);
  delay(1);
}

I got the values to go between 0 and 255 now (as it should), however I can't change the colors myself. Basically, I have no control over the myPort.read() values. At the moment it's sitting on 70, but in a few seconds it'll probably bounce up to 255 or something.