Help Getting Started with "Processing"

How do I get an arduino to work hand in hand with "Processing" ? I see the project arduino code alongside a Processing script. how do I install the software to get the two programs to work? Do I need to add-on to the arduino 21 release or download another program?

Thanks

You can do it in two ways.

  1. Simply read and write from the arduino on the serial line with Serial.Print() and do the same at the processing end
  2. Load into the arduino some code called firmata, this makes the arduino into a dumb I/O module and use the arduino library from processing.
    I prefer 1) but 2) is easer (more simple minded and less flexible)
    See the communications part of:-
    http://www.arduino.cc/en/Tutorial/HomePage

Here is what I am trying to do
http://luckylarry.co.uk/arduino-projects/arduino-modifying-a-robot-arm/
On page two there is a processing part

Thanks

So am am not sure what your question is. Those pages describe what you have to do. What is the problem?