November 2022

Recitation 7: Neopixel Music Visualization

TASK 1 (Yes I changed red into green) TASK 2: (⬆️I really think this strip looks like Thanos’s glove.) TASK 4:   import processing.sound.*; SoundFile sample; Amplitude analysis; void setup() {   size(640, 480);     // load and play a sound file in a loop   sample = new SoundFile(this, “夏日入侵企画 – 🎇.mp3”);   sample.loop();   // create the Amplitude analysis object   analysis = new Continue reading Recitation 7: Neopixel Music Visualization

Final Project: Preparatory Research and Analysis

The computer orchestra created by Simon de Diesbach, Jonas Lacôte, and Laura Perrenoud really impressed me. In this work, the computers are used as singers, while the real singers are people from around the world. Some of the “audiences” actually became the artist and created a part of the artifacts, and the other part of Continue reading Final Project: Preparatory Research and Analysis

Recitation 6: Animating an Interactive Poster

My poster is as bellow: And the code is: //bounce int rad = 365; // Width of the shape float xpos, ypos; float xpos2, ypos2;// Starting position of shape float xspeed =5; // Speed of the shape float yspeed =8; // Speed of the shape int xdirection = 1; // Left or Right int ydirection Continue reading Recitation 6: Animating an Interactive Poster