Play with Processing (not for Pi 5)

What is Processing?

Processing is a simple programming environment that was created to make it easier to develop visually oriented applications with an emphasis on animation and providing users with instant feedback through interaction. The developers wanted a means to “sketch” ideas in code. As its capabilities have expanded over the past decade, Processing has come to be used for more advanced production-level work in addition to its sketching role. Originally built as a domain-specific extension to Java targeted towards artists and designers, Processing has evolved into a full-blown design and prototyping tool used for large-scale installation work, motion graphics, and complex data visualization.

Processing is based on Java, but because program elements in Processing are fairly simple, you can learn to use it even if you don’t know any Java. If you’re familiar with Java, it’s best to forget that Processing has anything to do with Java for a while, until you get the hang of how the API works.

This text is from the tutorial, Processing Overview.

Install the Processing

Note

Before you can use Processing, you need to access the Raspberry Pi desktop remotely (Remote Desktop Access for Raspberry Pi) or connect a display for the Raspberry Pi.

  1. First visit https://processing.org/download and select the Linux(Raspberry Pi 32-bit) or Linux(Raspberry Pi 64-bit) version. Using this method, you can always download the latest version.

    Or you can use the following command to download the Processing from the Terminal.

    wget https://github.com/benfry/processing4/releases/download/processing-1293-4.3/processing-4.3-linux-arm32.tgz
    
    wget https://github.com/benfry/processing4/releases/download/processing-1293-4.3/processing-4.3-linux-arm64.tgz
    
  2. A .tar.gz file will be downloaded, which most Linux users should be familiar with. Extract the file you just downloaded from its location.

    tar xvfz processing-xxxx.tgz
    

    Replace xxxx with the rest of the file’s name, which is the version number. This will create a folder named processing-xxxx or something similar.

  3. Then go to that directory:

    cd processing-xxxx
    
  4. And run it:

./processing
  1. With any luck, the main Processing window will now be visible.

    ../_images/processing2.png

Install Hardware I/O

In order to use the Raspberry Pi’s GPIO, you need to manually add a Hardware I/O library.

Click Sketch -> Import Library -> Add Library...

../_images/import-00.png

Find Hardware I/O , select it, and then click Install. When done, a checkmark icon will appear.

../_images/import-02.png

Projects