Difference between revisions of "Processing Introduction"

From Interaction Station Wiki
Jump to navigation Jump to search
 
(39 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
=Processing=
 
=Processing=
  
[[file:Processing 3 logo.png|400px]]
+
[[file:Processing 3 logo.png|400px| thumb | processing logo]]
  
Processing is a free graphical library and integrated development environment built for the electronic arts, new media art,  
+
Processing is an open-source programming language and development environment that is designed for creating visual art and interactive design. It is built on top of the Java programming language and is intended for beginners and non-programmers who want to learn programming for the purpose of creating interactive graphics, animations, and other visual media. Processing is often used in fields such as visual art, graphic design, and data visualization and it allows users to create interactive sketches that respond to user input and generate real-time graphics. The language is known for its simplicity and ease of use, making it a popular choice for artists and designers looking to create interactive digital works.
  
and visual design communities with the purpose of teaching non-programmers the fundamentals of computer programming in a visual context.
+
Here's the link for downloading it: https://processing.org/download/
 
 
Currently, Processing uses the Java language, p5.js (JavaScript), and Processing.py (Python).
 
 
 
 
 
https://processing.org/download/
 
  
  
 
==Say Hello==
 
==Say Hello==
  
setup()
+
setup() function:
  
 
only run once.
 
only run once.
  
draw()
+
draw()function:
  
 
will continuously repeat the action inside of the {}
 
will continuously repeat the action inside of the {}
Line 44: Line 39:
  
 
void setup(){
 
void setup(){
size(400,400);
+
size(1200,800);
//println("hello!Nan");
+
background(0);
background(30,50,80);
 
  
 
}
 
}
 
void draw(){
 
void draw(){
//println("welcome to nteraction station!");
+
stroke(250,250,140);
//RGB Value
+
line(0,0,600,400);
stroke(30,150,140);
+
//line(width/2, height/2, mouseX, mouseY);
line(width/2, height/2, mouseX, mouseY);
 
 
}
 
}
  
Line 72: Line 65:
  
 
void setup(){
 
void setup(){
//size(400,400);
+
//size(1200,800);
//println("hello!Nan");
+
background(0);
 
fullScreen();
 
fullScreen();
background(30,50,80);
 
 
 
}
 
}
 
void draw(){
 
void draw(){
//println("welcome to nteraction station!");
+
stroke(250,250,140);
//RGB Value
+
//line(0,0,600,400);
stroke(30,150,140);
 
 
line(width/2, height/2, mouseX, mouseY);
 
line(width/2, height/2, mouseX, mouseY);
 
}
 
}
Line 88: Line 78:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
=='''Draw'''==
+
==Draw==
 
<syntaxhighlight lang="java" line='line'>
 
<syntaxhighlight lang="java" line='line'>
 
void setup(){
 
void setup(){
//size(400,400);
+
 
//println("hello!Nan");
+
size(1200,800);
fullScreen();
+
background(0);  
background(30,50,80);
+
//fullScreen();
+
 
 
}
 
}
 
void draw(){
 
void draw(){
//println("welcome to interaction station!");
+
 
//RGB Value
+
background(0);
 
noStroke();
 
noStroke();
fill(0,200,0);
+
fill(0,80,80);
 +
ellipse(width/2,height/2,200,200);
 +
strokeWeight(5);
 +
stroke(250,250,140);
 +
line(width/2, height/2, mouseX, mouseY);
  
ellipse(width/2,height/2,150,150);
 
stroke(30,150,140);
 
strokeWeight(2);
 
line(width/2, height/2, mouseX, mouseY);
 
println("mouseX:",mouseX);
 
println("mouseY:",mouseY);
 
if(mousePressed){
 
background(30,50,80);
 
}
 
 
}
 
}
 
</syntaxhighlight>
 
</syntaxhighlight>
  
=='''Communication with Arduino'''==
 
  
there are two ways to get processing sketches communicating with microcontrollers.
+
<b>1. Try to change the background(0); to the end of void draw() and see what happens.</b>
  
1. the first one is to use the microcontroller as an HID (Human Interface Device), like a mouse or keyboard.
+
<b>2. Try to use noStroke(), fill(), strokeWeight().</b>
  
 +
<b>3. Don't forget to use the reference page:</b>
  
in this case, we only need to change some code in Arduino IDE.
+
https://processing.org/reference/
  
now. we will use the X and Y values from the motion sensor on CPX to control the position of the nouse.
+
<b>4. Be patient carefully read the console and error message.</b>
 +
 
 +
<b>5. Let's use a simple if statement to clear out the lines when we mouse is pressed.</b>
  
and left button on CPX to work as mouse left click.
 
  
===Arduino HID:===
 
 
<syntaxhighlight lang="java" line='line'>
 
<syntaxhighlight lang="java" line='line'>
 +
void setup(){
  
#include "Mouse.h"
+
size(1200,800);
#include <Adafruit_CircuitPlayground.h>
+
background(0);  
float X, Y, Z;
+
//fullScreen();
//int leftButton;
 
bool mouseIsActive = false;
 
int slideSwitch;
 
  
void setup() {
 
  // put your setup code here, to run once:
 
  CircuitPlayground.begin();
 
  Mouse.begin();
 
 
}
 
}
 +
void draw(){
  
void loop() {
+
noStroke();
  //read slide switch from cpx.
+
fill(0,80,80);
  slideSwitch = CircuitPlayground.slideSwitch();
+
ellipse(width/2,height/2,200,200);
  // if the switch is on the CPX mouse is active,  
+
strokeWeight(5);
  if(slideSwitch ==HIGH){
+
stroke(250,250,140);
    mouseIsActive=true;
+
line(width/2, height/2, mouseX, mouseY);
    }else{
 
      //if the slide switch is off, the cpx mouse will be off
 
      mouseIsActive=false;
 
      }
 
  
  //read the leftButton from cpx
+
if(mousePressed){
  int leftButton = CircuitPlayground.leftButton();
 
  //x and y position from motion sensor
 
  X = CircuitPlayground.motionX();
 
  Y = CircuitPlayground.motionY();
 
  
  //int xReading=map(x,-1,1,0,100);
+
background(0);
  // if the mouse control state is active, move the mouse with motion sensor X and Y value.
+
}
  if (mouseIsActive) {
 
    Mouse.move(X*2, Y*2, 0);
 
  }
 
  
// if the mouse is not pressed, press it:
 
  if (leftButton==HIGH){
 
    if (!Mouse.isPressed(MOUSE_LEFT)) {
 
      Mouse.press(MOUSE_LEFT);
 
    }
 
    }else{  // else the mouse button is not pressed:
 
      if (Mouse.isPressed(MOUSE_LEFT)) {
 
      Mouse.release(MOUSE_LEFT);
 
    }
 
      }
 
  delay(5);
 
 
}
 
}
 +
</syntaxhighlight>
 +
 +
==Communication with Arduino==
 +
 +
There are two ways to get processing sketches communicating with microcontrollers.
 +
 +
<b>1. The first one is to use the microcontroller as an HID (Human Interface Device), like a mouse or keyboard.</b>
  
</syntaxhighlight>
+
We won't go into detail today about it, but you are interested check out [[arduino-hid | Arduino HID]]
  
2. '''however, sometimes, you want to send data directly from a microcontroller to processing.'''
 
  
in this case, we need to do write few lines of code in both Arduino and processing.
+
<b>2. Sometimes, you want to send data directly from a microcontroller to Processing </b><br>
 +
In this case, we need to do write few lines of code in both Arduino and processing.
  
===Send out data Arduino IDE:===
+
===Send out data Arduino IDE===
 +
N.B. The following steps use the [[About Circuit Playground Express | Adafruit Circuit Playground Express]], a board with integrated sensors that comes really handy for wearables' projects. You can easily re-adapt it to be used to send sensor data from an Arduino to processing. You can find a more specific guide to do so [[ Sending data from Arduino to Processing|here]].
  
 
<syntaxhighlight lang="java" line='line'>
 
<syntaxhighlight lang="java" line='line'>
 +
 
#include <Adafruit_CircuitPlayground.h>
 
#include <Adafruit_CircuitPlayground.h>
 
float X, Y, Z;
 
float X, Y, Z;
Line 202: Line 169:
 
   Y = CircuitPlayground.motionY();
 
   Y = CircuitPlayground.motionY();
 
   Z = CircuitPlayground.motionZ();
 
   Z = CircuitPlayground.motionZ();
 +
 
 
   int xVal=map(X,-9,10,0,1920);
 
   int xVal=map(X,-9,10,0,1920);
 +
//somtime, if you move too fast the value will turn into a negative number.
 +
//if the value is smaller than 0, we can multiply -1 (*=). and converts it back to a positive number
 +
  if(xVal<0){xVal*= -1;
 +
    }
 
   int yVal=map(Y,-9,10,0,1080);
 
   int yVal=map(Y,-9,10,0,1080);
+
  if(yVal<0){yVal*= -1;
 +
    }
 
   Serial.print(xVal);
 
   Serial.print(xVal);
 
   Serial.print("\t"); //instert a tap in between
 
   Serial.print("\t"); //instert a tap in between
Line 212: Line 185:
 
   
 
   
 
   delay(10);
 
   delay(10);
 +
}
 +
 +
</syntaxhighlight>
 +
 +
===Receive the value in Processing===
 +
<b>1. First let's select the right serial Port</b>
 +
 +
The communication between Arduino and processing is done by serial port(USB port).
 +
 +
When Arduino executing "Serial.print", it prints messages to the serial port, and processing needs to read the message from the serial port.
 +
 +
However, everyone have different USB port layouts, we need to know which usb port wen need to read.
 +
 +
 +
<syntaxhighlight lang="java" line='line'>
 +
import processing.serial.Serial;
 +
//select serial port and set bauds rate
 +
static final int PORT_INDEX=2,BAUDS=9600;
 +
int[] vals= {};
 +
void setup(){
 +
  noLoop();
 +
  frameRate(18);
 +
  final String[] ports = Serial.list();
 +
  printArray(ports);
 
   
 
   
 
}
 
}
 
</syntaxhighlight>
 
</syntaxhighlight>
  
===Receive the value in Processing:===
+
In this code, we are printing all the ports in <b>setup()</b> function that's why it only runs once remember?
 +
 
 +
Now you can see a list of USB ports in your console, find out which port is your Adafruit circuit playground express.
 +
 
 +
Normally it is a /dev/cu.usbmodem.In my case it is "[2] "/dev/cu.usbmodem11201".
 +
 
 +
So I need to go to second line of my code:
 +
<syntaxhighlight lang="java" line='line'>
 +
static final int PORT_INDEX=2,BAUDS=9600;
 +
</syntaxhighlight>
 +
 
 +
Make sure that the PORT_INDEX=2
 +
 
 +
For example, if YOUR Port is 3, you need to make sure that your PORT_INDEX=3
 +
 
 +
 
 +
 
 +
 
 +
<b>2. Now Processing is ready to receive messages!!!</b>
  
 
<syntaxhighlight lang="java" line='line'>
 
<syntaxhighlight lang="java" line='line'>
Line 222: Line 237:
 
import processing.serial.Serial;
 
import processing.serial.Serial;
 
//select serial port and set bauds rate
 
//select serial port and set bauds rate
static final int PORT_INDEX=6,BAUDS=9600;
+
static final int PORT_INDEX=2,BAUDS=9600;
 
// create an array, a list of data will be used to store values from snesors.
 
// create an array, a list of data will be used to store values from snesors.
 
int[] vals= {};
 
int[] vals= {};
Line 228: Line 243:
 
void setup(){
 
void setup(){
 
   noLoop();
 
   noLoop();
   frameRate(18);
+
   frameRate(12);
 
   final String[] ports = Serial.list();
 
   final String[] ports = Serial.list();
 
   printArray(ports);
 
   printArray(ports);
Line 250: Line 265:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
==='''Add the lines back to this code'''===
+
===Add the lines back to this code===
  
Now, please try to add the animated lines back to the code.
+
Now, please try to add the animated lines back to the code and use X and Y values from the motion sensor as mouse positions to draw the line. As well as CPX button clicks to clear out the lines.
 +
<syntaxhighlight lang="java" line='line'>
  
and use X and Y values from the motion sensor as mouse positions to draw the line.
+
import processing.serial.Serial;
 +
//select serial port and set bauds rate
 +
static final int PORT_INDEX=2,BAUDS=9600;
 +
// create an array, a list of data will be used to store values from snesors.
 +
int[] vals= {};
 +
 +
void setup(){
 +
  noLoop();
 +
  frameRate(18);
 +
  final String[] ports = Serial.list();
 +
  printArray(ports);
 +
  new Serial(this, ports[PORT_INDEX], BAUDS).bufferUntil(ENTER);
 +
 
 +
  size(1200,800);
 +
  background(0);
 +
}
 +
 +
void draw(){
 +
 
 +
  print("x=");
 +
  println(vals[0]);
 +
  print("Y=");
 +
  println(vals[1]);
 +
  print("Button=");
 +
  println(vals[2]);
  
and CPX button clicks to clear out the lines.
+
//the ellipse 
 +
  noStroke();
 +
  fill(0,80,80);
 +
  ellipse(width/2,height/2,200,200);
 +
 
 +
 
 +
// the lines
 +
  strokeWeight(5);
 +
  stroke(250,250,140);
 +
//  line(width/2,height/2,mouseX,mouseY);
 +
  line(width/2,height/2,vals[0],vals[1]);
 +
  if(vals[2]>0){
 +
  background(0);
 +
  }
  
If you need help, cleck here--> [[?! add lines]]
+
    }
 +
void serialEvent(final Serial s) {
 +
// split the string from the serial port into 3 integers and store it in the list.
 +
  vals = int(splitTokens(s.readString()));
 +
  redraw = true;
 +
}
  
=='''Draw a image:'''==
 
  
Let' try to draw an image with PImage!
+
</syntaxhighlight>
  
https://processing.org/reference/PImage.html
+
[[Category:Processing]]
  
first, we need to create empty processing and save it somewhere on your computer.
+
==Draw a image==
  
in this case, we created a sketch folder, and inside of the sketch folder,
+
Let's try to draw an image with PImage!
  
we need to create a new folder called "data" and save an image (jpg, png, gif,tga)in the "data" folder.
+
https://processing.org/reference/PImage.html
  
 +
First, we need to create empty processing and save it somewhere on your computer.
  
 +
In this case, we created a sketch folder, and inside of the sketch folder, we need to create a new folder called "data" and save an image (jpg, png, gif,tga)in the "data" folder.
  
 
<syntaxhighlight lang="java" line='line'>
 
<syntaxhighlight lang="java" line='line'>
Line 291: Line 350:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
=='''Image sequence:'''==
+
==Image sequence==
  
 
Step two:
 
Step two:
  
let's make it move!
+
Let's make it move!
 +
 
 +
In order to do that we need to use a sequence of images.
 +
Here is how to use for loop to load a sequence of images:
 +
 
 +
<syntaxhighlight lang="java" line='line'>
 +
 
 +
int numImages=120;
 +
PImage[] images= new PImage[numImages];
 +
 +
for (int i = 0; i < numImages; i++) {
 +
  String imageName = "run-" + nf(i, 5) + ".png";
 +
  // images[i] = loadImage(imageName);
 +
  println(imageName);
 +
  println(nf(i,5));
 +
  }
 +
 
 +
</syntaxhighlight>
 +
 
 +
 
 +
Now we understand how the code is loading all the images sequence, we can start drawing the image sequence:
 +
 
 +
<b>One important thing!</b>
 +
 
 +
Make sure you put the data folder in the right place: the same folder where your processing sketch is saved.
 +
 
 +
Like this:
 +
 
 +
[[File:Data-folder.png|500px]]
 +
 
  
in order to do that we need to use a sequence of images.
 
  
you can copy the image sequences at the file folder from the physical interfaces@interaction station channel on Teams
 
  
 
<syntaxhighlight lang="java" line='line'>
 
<syntaxhighlight lang="java" line='line'>
Line 332: Line 418:
  
  
now, let's make it interactive!
 
  
remember the first example where we use mouse position to draw lines?
+
 
 +
Now, let's make it interactive!
 +
 
 +
Remember the first example where we use mouse position to draw lines?
  
 
we can also use mouseX position to control the animation.
 
we can also use mouseX position to control the animation.
  
let's comment out:
+
Let's comment out:
 
<syntaxhighlight lang="java" line='line'>
 
<syntaxhighlight lang="java" line='line'>
 
imgInSeq= (imgInSeq+1) % numImages;
 
imgInSeq= (imgInSeq+1) % numImages;
Line 347: Line 435:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
now, the images always display from the top left corner. let's move it to the center:
+
Now, the images always display from the top left corner. Let's move it to the center:
  
'''Question Time:'''
+
the center point should be:
  
'''HOW TO DO THAT??'''
+
x=(display window's width - the image width) divided by 2
  
[[center the image]]
+
y=(display window's Hight- the image height) divided by 2
  
=='''use other GIFs:'''==
 
  
[[File:Gifgif-250px.gif]] [[File:Cat-maker-250px.gif]] [[File:Alpaca--hoops-250px.gif]]
 
  
 +
<syntaxhighlight lang="java" line='line'>
  
 +
image(images[imgInSeq], (displayWidth-images[imgInSeq].width)/2, (displayHeight-images[imgInSeq].height)/2, images[imgInSeq].width, images[imgInSeq].height );
  
Now, let's try it by search online and find your own GIF and make your own image mouse-controlled animated images.
 
 
you can use a free online tool GIF frame extractor to split the gif file in image sequence:
 
 
https://ezgif.com/split
 
 
 
About renaming the files in sequence:
 
 
 
if you are using macOS, you can just select all the images and right-click select "rename" and chose "format" to rename all your files in sequence.
 
 
like this:
 
 
[[File:Rename-files.png|300px]]
 
 
However:
 
 
if you are using Window 10 after you rename a sequence of files, they might look like this: run-(1).png run-(2).png run-(3).png ...
 
 
don't panic, you can change the code from
 
 
<syntaxhighlight lang="java" line='line'>
 
for (int i = 0; i < numImages; i++) {
 
  String imageName = "run-" + nf(i, 5) + ".png";
 
  images[i] = loadImage(imageName);
 
  }
 
</syntaxhighlight>
 
into
 
<syntaxhighlight lang="java" line='line'>
 
for (int i = 0; i < numImages; i++) {
 
  String imageName = "run-(" + i + ").png";
 
  images[i] = loadImage(imageName);
 
  }
 
 
</syntaxhighlight>
 
</syntaxhighlight>
  
=='''Sensor controlled image sequence:'''==
+
==Sensor controlled image sequence==
  
let's use higher resolution images and try to control the animation with the light sensor from CPX.
+
Let's use higher resolution images and try to control the animation with the light sensor from circuit Playground Express.
 +
We can use the lego image sequence from the data folder on teams.
  
we can use the lego image sequence from the data folder on teams.
 
  
 +
<b>1. Use the light sensor from CPX to animated the image sequences.</b>
  
1. use the light sensor from CPX to animated the image sequences.
+
===Send out light sensor value from Arduino===
  
===send out light senstor value from Arduino:===
 
 
<syntaxhighlight lang="c" line='line'>
 
<syntaxhighlight lang="c" line='line'>
 
#include <Adafruit_CircuitPlayground.h>
 
#include <Adafruit_CircuitPlayground.h>
Line 428: Line 482:
 
===receive and draw in Processing:===
 
===receive and draw in Processing:===
 
<syntaxhighlight lang="java" line='line'>
 
<syntaxhighlight lang="java" line='line'>
 
 
 
import processing.serial.Serial;
 
import processing.serial.Serial;
static final int PORT_INDEX=6,BAUDS=9600;
+
static final int PORT_INDEX=2,BAUDS=9600;
 
int [] vals= {};
 
int [] vals= {};
  
Line 440: Line 492:
  
 
void setup() {
 
void setup() {
 +
  size(1920,1080);
 
   noLoop();
 
   noLoop();
 
   final String[] ports = Serial.list();
 
   final String[] ports = Serial.list();
Line 447: Line 500:
 
  //let's give it a frame rate value so that we can change it later:-))
 
  //let's give it a frame rate value so that we can change it later:-))
 
  frameRate(18);
 
  frameRate(18);
  fullScreen();
+
  //fullScreen();
  
 
  for (int i = 0; i < numImages; i++) {
 
  for (int i = 0; i < numImages; i++) {
Line 459: Line 512:
 
   println(vals[0]);
 
   println(vals[0]);
  
 
+
  if( vals[0]>549){
   imgInSeq = (int)map(vals[0], 0, 500, 0, numImages - 1);
+
   
 +
  vals[0]=550;
 +
}
 +
   imgInSeq = (int)map(vals[0], 0, 550, 0, numImages - 1);
 +
  if( vals[0]>549){
 +
   
 +
  vals[0]=550;
 +
}
  
 
   image(images[imgInSeq],0,0,images[imgInSeq].width,images[imgInSeq].height);
 
   image(images[imgInSeq],0,0,images[imgInSeq].width,images[imgInSeq].height);
Line 472: Line 532:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
==='''use the "if" statement'''===
+
===Use the "if" statement===
  
 
Now let's use other sensor values and an "if " statement to control the image sequences.
 
Now let's use other sensor values and an "if " statement to control the image sequences.
  
in this case, we can try to use the sound level value from CPX's mic.
+
In this case, we can try to use the sound level value from CPX's mic.
 
+
And say: if the sound input is louder than a certain level, play the image sequence. else, pulse and do nothing.
and say: if the sound input is louder than a certain level, play the image sequence. else, pulse and do nothing.
 
  
===send out sound value from Arduino:===
+
===Send out sound value from Arduino===
  
 
<syntaxhighlight lang="C" line='line'>
 
<syntaxhighlight lang="C" line='line'>
Line 510: Line 569:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
===Receive and draw in Processing:===
+
===Receive and draw in Processing===
 
<syntaxhighlight lang="java" line='line'>
 
<syntaxhighlight lang="java" line='line'>
  
Line 556: Line 615:
  
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
 +
 +
What if you want the image sequence to go back to the first frame after each trigger? what do you need to add to this code?
 +
 +
<syntaxhighlight lang="java" line='line'>
 +
 +
if (vals[0]>40){
 +
imgInSeq= (imgInSeq+1) % numImages;
 +
}else{
 +
  imgInSeq=1;
 +
}
 +
 +
 +
</syntaxhighlight>
 +
 +
 +
And after each sound trigger, if you want processing to finish playing the entire sequence before go back to the first frame you can take a look at this:
 +
 +
<syntaxhighlight lang="java" line='line'>
 +
 +
if (vals[0]>40){
 +
imgInSeq= (imgInSeq+1) % numImages;
 +
}else{
 +
  if(imgInSeq>5 && imgInSeq<97){
 +
  imgInSeq= (imgInSeq+1) % numImages;
 +
}else{
 +
  imgInSeq=1;
 +
  }
 +
}
 +
 +
</syntaxhighlight>
 +
 +
 +
==Use other GIFs==
 +
 +
[[File:Gifgif-250px.gif]] [[File:Cat-maker-250px.gif]] [[File:Alpaca--hoops-250px.gif]]
 +
 +
 +
 +
Now, let's try it by search online and find your own GIF and make your own image mouse-controlled animated images.
 +
 +
You can use a free online tool GIF frame extractor to split the gif file in image sequence:
 +
 +
https://ezgif.com/split
 +
 +
 +
About renaming the files in sequence:
 +
 +
 +
If you are using macOS, you can just select all the images and right-click select "rename" and chose "format" to rename all your files in sequence.
 +
 +
Like this:
 +
 +
[[File:Rename-files.png|300px]]
 +
 +
However:
 +
 +
If you are using Window 10 after you rename a sequence of files, they might look like this: run-(1).png run-(2).png run-(3).png ...
 +
 +
Don't panic, you can change the code from
 +
 +
<syntaxhighlight lang="java" line='line'>
 +
for (int i = 0; i < numImages; i++) {
 +
  String imageName = "run-" + nf(i, 5) + ".png";
 +
  images[i] = loadImage(imageName);
 +
  }
 +
</syntaxhighlight>
 +
into
 +
<syntaxhighlight lang="java" line='line'>
 +
for (int i = 0; i < numImages; i++) {
 +
  String imageName = "run-(" + i + ").png";
 +
  images[i] = loadImage(imageName);
 +
  }
 +
</syntaxhighlight>
 +
 +
--------
 +
 +
 +
If you are interested you can also check out how to write from Processing to Arduino. You can find a tutorial [[Writing from Processing to Arduino|here]]
 +
 +
[[Category:Processing]]

Latest revision as of 12:27, 17 January 2023

Processing

processing logo

Processing is an open-source programming language and development environment that is designed for creating visual art and interactive design. It is built on top of the Java programming language and is intended for beginners and non-programmers who want to learn programming for the purpose of creating interactive graphics, animations, and other visual media. Processing is often used in fields such as visual art, graphic design, and data visualization and it allows users to create interactive sketches that respond to user input and generate real-time graphics. The language is known for its simplicity and ease of use, making it a popular choice for artists and designers looking to create interactive digital works.

Here's the link for downloading it: https://processing.org/download/


Say Hello

setup() function:

only run once.

draw()function:

will continuously repeat the action inside of the {}


1void setup(){
2size(400,400);
3println("Hello!Nan");
4
5}
6void draw(){
7println("welcome to interaction station!");
8}

copy-paste the code above and observe the message from the console.


Now, let's try to draw something

 1void setup(){
 2size(1200,800);
 3background(0);
 4
 5}
 6void draw(){
 7stroke(250,250,140);
 8line(0,0,600,400);
 9//line(width/2, height/2, mouseX, mouseY);
10}


Sketch --> Run

Sketch --> Tweak

Sketch --> Present


Full screen!

 1void setup(){
 2//size(1200,800);
 3background(0);
 4fullScreen();
 5}
 6void draw(){
 7stroke(250,250,140);
 8//line(0,0,600,400);
 9line(width/2, height/2, mouseX, mouseY);
10}

Draw

 1void setup(){
 2
 3size(1200,800);
 4background(0); 
 5//fullScreen();
 6
 7}
 8void draw(){
 9
10background(0);
11noStroke();
12fill(0,80,80);
13ellipse(width/2,height/2,200,200);
14strokeWeight(5);
15stroke(250,250,140);
16line(width/2, height/2, mouseX, mouseY);
17
18}


1. Try to change the background(0); to the end of void draw() and see what happens.

2. Try to use noStroke(), fill(), strokeWeight().

3. Don't forget to use the reference page:

https://processing.org/reference/

4. Be patient carefully read the console and error message.

5. Let's use a simple if statement to clear out the lines when we mouse is pressed.


 1void setup(){
 2
 3size(1200,800);
 4background(0); 
 5//fullScreen();
 6
 7}
 8void draw(){
 9
10noStroke();
11fill(0,80,80);
12ellipse(width/2,height/2,200,200);
13strokeWeight(5);
14stroke(250,250,140);
15line(width/2, height/2, mouseX, mouseY);
16
17if(mousePressed){
18
19background(0);
20}
21
22}

Communication with Arduino

There are two ways to get processing sketches communicating with microcontrollers.

1. The first one is to use the microcontroller as an HID (Human Interface Device), like a mouse or keyboard.

We won't go into detail today about it, but you are interested check out Arduino HID


2. Sometimes, you want to send data directly from a microcontroller to Processing
In this case, we need to do write few lines of code in both Arduino and processing.

Send out data Arduino IDE

N.B. The following steps use the Adafruit Circuit Playground Express, a board with integrated sensors that comes really handy for wearables' projects. You can easily re-adapt it to be used to send sensor data from an Arduino to processing. You can find a more specific guide to do so here.

 1#include <Adafruit_CircuitPlayground.h>
 2float X, Y, Z;
 3void setup() {
 4 Serial.begin(9600);
 5 CircuitPlayground.begin();
 6}
 7 
 8void loop() {
 9 
10  int leftButton = CircuitPlayground.leftButton();
11  X = CircuitPlayground.motionX();
12  Y = CircuitPlayground.motionY();
13  Z = CircuitPlayground.motionZ();
14  
15  int xVal=map(X,-9,10,0,1920);
16 //somtime, if you move too fast the value will turn into a negative number.
17 //if the value is smaller than 0, we can multiply -1 (*=). and converts it back to a positive number
18  if(xVal<0){xVal*= -1;
19    }
20  int yVal=map(Y,-9,10,0,1080);
21  if(yVal<0){yVal*= -1;
22    }
23  Serial.print(xVal);
24  Serial.print("\t"); //instert a tap in between
25  Serial.print(yVal);
26  Serial.print("\t");//instert a tap in between
27  Serial.println(leftButton);
28 
29  delay(10);
30 }

Receive the value in Processing

1. First let's select the right serial Port

The communication between Arduino and processing is done by serial port(USB port).

When Arduino executing "Serial.print", it prints messages to the serial port, and processing needs to read the message from the serial port.

However, everyone have different USB port layouts, we need to know which usb port wen need to read.


 1import processing.serial.Serial;
 2//select serial port and set bauds rate
 3static final int PORT_INDEX=2,BAUDS=9600;
 4int[] vals= {};
 5void setup(){
 6  noLoop();
 7  frameRate(18);
 8  final String[] ports = Serial.list();
 9  printArray(ports);
10 
11}

In this code, we are printing all the ports in setup() function that's why it only runs once remember?

Now you can see a list of USB ports in your console, find out which port is your Adafruit circuit playground express.

Normally it is a /dev/cu.usbmodem.In my case it is "[2] "/dev/cu.usbmodem11201".

So I need to go to second line of my code:

1static final int PORT_INDEX=2,BAUDS=9600;

Make sure that the PORT_INDEX=2

For example, if YOUR Port is 3, you need to make sure that your PORT_INDEX=3



2. Now Processing is ready to receive messages!!!

 1import processing.serial.Serial;
 2//select serial port and set bauds rate
 3static final int PORT_INDEX=2,BAUDS=9600;
 4// create an array, a list of data will be used to store values from snesors.
 5int[] vals= {};
 6 
 7void setup(){
 8  noLoop();
 9  frameRate(12);
10  final String[] ports = Serial.list();
11  printArray(ports);
12  new Serial(this, ports[PORT_INDEX], BAUDS).bufferUntil(ENTER); 
13}
14 
15void draw(){
16 
17   print("x=");
18   println(vals[0]); 
19   print("Y=");
20   println(vals[1]); 
21   print("Button=");
22   println(vals[2]); 
23    }
24void serialEvent(final Serial s) {
25// split the string from the serial port into 3 integers and store it in the list.
26  vals = int(splitTokens(s.readString()));
27  redraw = true;
28}

Add the lines back to this code

Now, please try to add the animated lines back to the code and use X and Y values from the motion sensor as mouse positions to draw the line. As well as CPX button clicks to clear out the lines.

 1import processing.serial.Serial;
 2//select serial port and set bauds rate
 3static final int PORT_INDEX=2,BAUDS=9600;
 4// create an array, a list of data will be used to store values from snesors.
 5int[] vals= {};
 6 
 7void setup(){
 8  noLoop();
 9  frameRate(18);
10  final String[] ports = Serial.list();
11  printArray(ports);
12  new Serial(this, ports[PORT_INDEX], BAUDS).bufferUntil(ENTER); 
13  
14  size(1200,800);
15  background(0);
16}
17 
18void draw(){
19   
20   print("x=");
21   println(vals[0]); 
22   print("Y=");
23   println(vals[1]); 
24   print("Button=");
25   println(vals[2]); 
26
27 //the ellipse  
28   noStroke();
29   fill(0,80,80);
30   ellipse(width/2,height/2,200,200);
31   
32   
33// the lines
34   strokeWeight(5);
35   stroke(250,250,140);
36 //  line(width/2,height/2,mouseX,mouseY);
37   line(width/2,height/2,vals[0],vals[1]);
38   if(vals[2]>0){
39   background(0);
40   }
41
42    }
43void serialEvent(final Serial s) {
44// split the string from the serial port into 3 integers and store it in the list.
45  vals = int(splitTokens(s.readString()));
46  redraw = true;
47}

Draw a image

Let's try to draw an image with PImage!

https://processing.org/reference/PImage.html

First, we need to create empty processing and save it somewhere on your computer.

In this case, we created a sketch folder, and inside of the sketch folder, we need to create a new folder called "data" and save an image (jpg, png, gif,tga)in the "data" folder.

 1PImage images;
 2
 3void setup() {
 4
 5 fullScreen();
 6 images=loadImage("run.gif");
 7}
 8
 9void draw() { 
10 // background(0);
11  image(images,0,0, images.width, images.height );  
12}

Image sequence

Step two:

Let's make it move!

In order to do that we need to use a sequence of images. Here is how to use for loop to load a sequence of images:

1 int numImages=120;
2 PImage[] images= new PImage[numImages];
3 
4 for (int i = 0; i < numImages; i++) {
5   String imageName = "run-" + nf(i, 5) + ".png";
6  // images[i] = loadImage(imageName);
7   println(imageName);
8   println(nf(i,5));
9  }


Now we understand how the code is loading all the images sequence, we can start drawing the image sequence:

One important thing!

Make sure you put the data folder in the right place: the same folder where your processing sketch is saved.

Like this:

Data-folder.png



 1int numImages=23;
 2int startNumImages=1;
 3PImage[] images= new PImage[numImages];
 4int imgInSeq=1;
 5
 6void setup() {
 7 // size(1920, 1080);
 8 //let's give it a frame rate value so that we can change it later:-))
 9 frameRate(18);
10 fullScreen();
11
12 for (int i = 0; i < numImages; i++) {
13   String imageName = "run-" + nf(i, 5) + ".png";
14   images[i] = loadImage(imageName);
15  }
16}
17
18void draw() { 
19 background(0);
20//we can use % (modulo) to cycle through the images. from 1- to numImages
21imgInSeq= (imgInSeq+1) % numImages;
22image(images[imgInSeq],0,0,images[imgInSeq].width,images[imgInSeq].height);
23
24}



Now, let's make it interactive!

Remember the first example where we use mouse position to draw lines?

we can also use mouseX position to control the animation.

Let's comment out:

1imgInSeq= (imgInSeq+1) % numImages;

and replace it with :

1int imgInSeq = (int)map(mouseX, 0, width, 0, numImages - 1);

Now, the images always display from the top left corner. Let's move it to the center:

the center point should be:

x=(display window's width - the image width) divided by 2

y=(display window's Hight- the image height) divided by 2


1image(images[imgInSeq], (displayWidth-images[imgInSeq].width)/2, (displayHeight-images[imgInSeq].height)/2, images[imgInSeq].width, images[imgInSeq].height );

Sensor controlled image sequence

Let's use higher resolution images and try to control the animation with the light sensor from circuit Playground Express. We can use the lego image sequence from the data folder on teams.


1. Use the light sensor from CPX to animated the image sequences.

Send out light sensor value from Arduino

 1#include <Adafruit_CircuitPlayground.h>
 2
 3int value;
 4
 5void setup() {
 6  Serial.begin(9600);
 7  CircuitPlayground.begin();
 8}
 9
10void loop() {
11  value = CircuitPlayground.lightSensor();
12  
13 // Serial.print("Light Sensor: ");
14  Serial.println(value);
15  delay(50);
16}

receive and draw in Processing:

 1import processing.serial.Serial;
 2static final int PORT_INDEX=2,BAUDS=9600;
 3int [] vals= {};
 4
 5int numImages=97;
 6int startNumImages=1;
 7PImage[] images= new PImage[numImages];
 8int imgInSeq=1;
 9
10void setup() {
11  size(1920,1080);
12  noLoop();
13  final String[] ports = Serial.list();
14  printArray(ports);
15  new Serial(this, ports[PORT_INDEX], BAUDS).bufferUntil(ENTER);
16
17 //let's give it a frame rate value so that we can change it later:-))
18 frameRate(18);
19 //fullScreen();
20
21 for (int i = 0; i < numImages; i++) {
22   String imageName = "lego" + nf(i, 5) + ".png";
23   images[i] = loadImage(imageName);
24  }
25}
26
27void draw() { 
28  background(0);
29  println(vals[0]);
30
31  if( vals[0]>549){
32    
33   vals[0]=550;
34}
35  imgInSeq = (int)map(vals[0], 0, 550, 0, numImages - 1);
36  if( vals[0]>549){
37    
38   vals[0]=550;
39}
40
41  image(images[imgInSeq],0,0,images[imgInSeq].width,images[imgInSeq].height);
42
43}
44
45void serialEvent(final Serial s) {
46  vals = int(splitTokens(s.readString()));
47  redraw = true;
48}

Use the "if" statement

Now let's use other sensor values and an "if " statement to control the image sequences.

In this case, we can try to use the sound level value from CPX's mic. And say: if the sound input is louder than a certain level, play the image sequence. else, pulse and do nothing.

Send out sound value from Arduino

 1#include <Adafruit_CircuitPlayground.h>
 2
 3int value;
 4
 5void setup() {
 6  Serial.begin(9600);
 7  CircuitPlayground.begin();
 8}
 9
10void loop() {
11  // Take 10 milliseconds of sound data to calculate
12  value = CircuitPlayground.mic.soundPressureLevel(10);
13  
14 // Serial.print("Sound Sensor SPL: ");
15  
16  int newVal=map(value,58,102,0,94);
17if (newVal<0){
18  newVal=0;
19    }
20  Serial.println(newVal);
21
22  delay(90);
23}

Receive and draw in Processing

 1import processing.serial.Serial;
 2static final int PORT_INDEX=6,BAUDS=9600;
 3int [] vals= {};
 4
 5int numImages=97;
 6int startNumImages=1;
 7PImage[] images= new PImage[numImages];
 8int imgInSeq=1;
 9
10void setup() {
11  noLoop();
12  final String[] ports = Serial.list();
13  printArray(ports);
14  new Serial(this, ports[PORT_INDEX], BAUDS).bufferUntil(ENTER);
15
16 //let's give it a frame rate value so that we can change it later:-))
17 frameRate(20);
18 fullScreen();
19
20 for (int i = 0; i < numImages; i++) {
21   String imageName = "lego" + nf(i, 5) + ".png";
22   images[i] = loadImage(imageName);
23  }
24}
25
26void draw() { 
27 background(0);
28 println(vals[0]);
29
30if (vals[0]>40){
31imgInSeq= (imgInSeq+1) % numImages;
32}
33
34image(images[imgInSeq],0,0,images[imgInSeq].width,images[imgInSeq].height);
35
36}
37
38void serialEvent(final Serial s) {
39  vals = int(splitTokens(s.readString()));
40  redraw = true;
41}


What if you want the image sequence to go back to the first frame after each trigger? what do you need to add to this code?

1if (vals[0]>40){
2imgInSeq= (imgInSeq+1) % numImages;
3}else{
4  imgInSeq=1;
5}


And after each sound trigger, if you want processing to finish playing the entire sequence before go back to the first frame you can take a look at this:

1if (vals[0]>40){
2imgInSeq= (imgInSeq+1) % numImages;
3}else{
4  if(imgInSeq>5 && imgInSeq<97){
5  imgInSeq= (imgInSeq+1) % numImages;
6}else{
7  imgInSeq=1;
8  }
9}


Use other GIFs

Gifgif-250px.gif Cat-maker-250px.gif Alpaca--hoops-250px.gif


Now, let's try it by search online and find your own GIF and make your own image mouse-controlled animated images.

You can use a free online tool GIF frame extractor to split the gif file in image sequence:

https://ezgif.com/split


About renaming the files in sequence:


If you are using macOS, you can just select all the images and right-click select "rename" and chose "format" to rename all your files in sequence.

Like this:

Rename-files.png

However:

If you are using Window 10 after you rename a sequence of files, they might look like this: run-(1).png run-(2).png run-(3).png ...

Don't panic, you can change the code from

1for (int i = 0; i < numImages; i++) {
2   String imageName = "run-" + nf(i, 5) + ".png";
3   images[i] = loadImage(imageName);
4  }

into

1for (int i = 0; i < numImages; i++) {
2   String imageName = "run-(" + i + ").png";
3   images[i] = loadImage(imageName);
4  }


If you are interested you can also check out how to write from Processing to Arduino. You can find a tutorial here