Interaction Lab Fall 2021 Final Proposal Essay Concept and Inspiration: My aim for this project is to connect Arduino (sensors) with processing (content) and show some artistic approaches that processing could display. Therefore, since the beginning of brainstorming, I have…
Recitation 8: Serial Communication
Exercise 1: Potentiometer x2 Many Cables Breadboard Processing Arduino Circuit: Video: Potentiometer drawing Arduino Code: void setup() { Serial.begin(9600); } void loop() { // read the input on analog pin 0: int sensor1 = analogRead(A0); int sensor2 = analogRead(A1); //…
Final Project Proposals
1. Make Your Rainbow Project Statement of Purpose: For this project, I was inspired by one of my pass artwork using multiple acrylic boards that combines elements in side an artwork to ONE artwork. And I thought that this is…
Recitation 7: Functions and Arrays
Gucci Array practice (Because the initial color looks very gucci-ish). Step 1: //rec 7, gucci star; for (int i = 0; i< star.length; i++){ star=new star(); } } void draw(){ background(bg); for…
Recitation 6 Rainbow Circle Homework
I finished this by attending the rainbow group study session. Make a black circle. void setup(){ size(600, 600); } void draw(){ background(255); noFill(); strokeWeight(30); ellipse(width/2, height/2, 300, 300); } Make it expand and contracts float r = 300; int changeSize…
Preparatory Research and Analysis-Research for Interaction Lab Final Project
In my point of view and attitude toward interactive arts, it will be more focused on “art” than on interaction technically. Undoubtedly that interaction techniques are significantly essential to complete an interactive project. The two projects I researched for that…
Recitation 6: Processing Animation
Inspiration: I was attracted to this gif on the recitation page and decided to remake this animation for documentation. Steps: I first created a void setup and void draw, and set the canvas size to 600×600. Then I need a…