Self-Illumination

My Elephant!

Mari Pokorny

About Me Edits

Kobe Kase

New About Me - Sophia Prescott

Sophia Prescott

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:

  • Abstract hard to define elements such as characteristics, persona, emotion, etc.
  • Convey a message through performance, interaction
  • Understand the effects and reading of color, formal qualities, and context
  • Conduct a formal and conceptual investigation of space and light

Technical skills:

  • Learn to control and mediate light as a medium (programmable lights using arduino)
  • Curate how pieces are activated, used, interacted with (sensors, installation, etc.)
  • Transform and manipulate different materials to achieve desired quality and effect (digital fabrication, modeling)



LED EXAMPLE

Oscar Lledo-Osborn

Mari SELF-ILLUMINATION FINAL PRESENTATION

Mari Pokorny

Mari SELF-ILLUMINATION FINAL PRESENTATION

Mari Pokorny

STUDIO ONE Presentation Template | SP 20

Shaunta Butler

Weekly Pop Ideas

Kobe Kase

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!

NeoPixel LED Strip

Liam Brady and Shaunta Butler

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.

 

NeoPixel Library

#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);
}