The design process involves a rigorous cycle of constant feedback and countless iterations. With every new angle and added perspective, your project continuously shifts and expands. While the process of this growth may be informed by external resources, the soul of your project starts from you. Who you are as the active driver and voice of your project greatly impacts the intention and outcome of your piece.
In this studio, students will use self-reflection and formative memories as inspiration to communicate and express their unique individuality. The challenge will be to distill this concept in the form of light incorporating electronics and new media to convey the subtle intricacies and complexities of one's identity. Whether it is a wall mounted sculpture that syncopates with your breath and speaks to your meditative nature or a light projector that displays a landscape of your birthplace, or even a wearable sun lamp that captures a special memory of your time in the outdoors, the options are endless.
Conceptual goals:
Technical skills:
Visit My Family Friend in the MIT Media Lab to see projects he is working on
https://www.media.mit.edu/people/adamjhh/overview/
https://www.ncaa.com/news/basketball-men/article/march-madness-2020-schedule going to a march madness game!
LED Strips are individually addressable ribbons of RGB (red green blue) lights, meaning that each light on the ribbon can be controlled by itself and give off any color on the visible color spectrum. Every light on the strip has its own chip onboard that processes commands given to it by the Arduino.
#include <Adafruit_NeoPixel.h> Adafruit_NeoPixel strip = Adafruit_NeoPixel(30, 6, NEO_GRB + NEO_KHZ800); void setup() { strip.begin(); strip.show(); } void loop() { for (int i = 0; i < strip.numPixels(); i++) { strip.setPixelColor(i, strip.Color(255, 0, 0)); } strip.show(); delay(100); }