NuVuX Sophomore Seminar - Fall 2019

Donald is an active man who enjoys rock-climbing, despite having had both legs amputated at age 24, one right below the knee and one halfway down his shin. He dances with the Heidi Latsky Dance Company, where his unique style of dance, which incorperates his wheelchair and tricks with it, can be showcased. He has learned to embrace his new body as an amputee by taking on the challenge of new activities, especially dance. Opening and Opening Loops was created for Donald to wear as part of the On Display performance, an interactive fashion show and dance performance. 

The wearable's design was based on Donald's general feeling of always being open and exposed because of his asymmetrical amputation. The wearable consists of styrene strips attached with 3D-printed pieces to many sashes around his torso. The strips originate from the same place on one side and fan out on the opposite side, as a way to represent the asymmetry of his legs. The strips expand when he bends his knee; however even when they are contracted, they remain partially expanded and open to represent Donald’s feelings of vulnerability and being exposed.

At Perkins school for the blind, eye prosthetics are not uncommon amongst the students. While they are usually comfortable and easy to use, it can be difficult for some to become accustom to them.

We met Eleanor, a student at Perkins, who will need to use an eye prosthetic soon. One of the challenges Eleanor will face because of her new prosthetic is the sensation of an object coming in contact with her face, especially when controlled by another person. It is likely that someone else will assist Eleanor with the placement of her prosthetic because her fine motor skills are affected by her Cerebral Palsy.

We knew we wanted to design a fun way for Eleanor to practice letting someone put an object in contact with her face. One of Eleanor's favorite toys is a horse named Horse, which inspired us to make a giraffe named Giraffe. We decided to make a giraffe because we wanted our design to be fun and familiar to Eleanor so that she would look forward to using it. The Giraffe works with a manual control that resembles the motion of scissors so that it is easy for Eleanor or someone else to use. A curved scissor lift is controlled by Eleanor or someone else to move the head of the giraffe towards her face. We hope that practice with the Giraffe Named Giraffe will help Eleanor become comfortable with her eye prosthetic.

 

 

5 Ring Underground Protection Dress
Nuvu Studio - Devices For Anthropogenic Futures
Date: 2019
Medium (s): Wood, Fabric, Wire
Wearable(s) Type: Dress with 5 Protective Exoskeleton Rings 

Function: Underground rock + falling debris protection


Our assignment was to imagine a time far away from now when we had run out of land that we are living on now. We were assigned to create wearable for alternate living situations and ours was underground. The closest experiences humans have with living underground is cave mining, and so our first step was to research the greatest accidents and harm that people have dealt with when cave mining. We found temperature and light but the biggest recurrence issue was the danger of rocks. Rocks underground and in caves could fall on us at anytime and once they fall its usable to late for you do escape them. We decided we wanted to create a project that would project you from these rocks falling. We began to brainstorm items that already existed that blocked the outside from what  was unprotected on the in. Our biggest inspiration was a shark tank, blocking the sharks from the people in the cage. After lots of sketches and pondering we came with the idea of a dress that blocked out the rocks, protecting the persons wearing the dress.

Our final idea had the same concept of our first prototype, with the rings in use for protection and attachment. It has 5 rings particularly placed for ultra protection of the body. The first for the shoulders and neck, then chest, then waist, then shins and knees, then the feet. These 5 rings are attached evenly with wire to make the dress flexible while keeping the same structure.  

We wanted our underneath fabric to have a pattern but we didn't want it to take away from our rings and the design on those. We also have a small black slip under our lazor cut fabric to make it less sheer and see-threw. These fabrics and to protect of your skin and help the visual appeal of the project

PROCESS:

For our first iteration we experimented with the shape of our design. We knew we wanted an exoskeleton like design that used progressively larger unconnected shapes such as rings which would give us the desired effect. Our first idea was the ring shape which we were the happiest with and worked the best. Even though we were set on using circles, we experimented with other shapes just to try out some other ideas. We experimented with some more creative shape ideas like circles that resembled sunny side up eggs and more simple designs like squares. for our iteration that used ovals, we agreed that the designs had uneven proportions that wouldn't flow with the overall body of our design. When constructing our egg shapes, we liked that they added a more creative and fun design element, though the overall design of the shapes weren't as aesthetically pleasing. Though we didn't use the egg shapes, we used the design idea of having the circles gradually become larger and larger towards the bottom of the dress. Our last design idea to try were the squares which we were hesitant to even put into production because we knew they would be too unwieldy.

Our ideas for the next iteration including adding fabric in between the disks that would help protect the body even more from falling rocks. Before we had this idea, we took a look at the obvious problem our dress had. The hoops only protect you from falling rocks that hit exactly on the hoops, and if rocks hit between, under, or on top of other areas of the dress, you wouldn’t be protected. To fix this problem, we experimented with the idea of placing a stretchy but sturdy fabric in between all of the hoops so the problem of falling rocks would be fixed. This solution worked pretty well and was much more protective than our first iteration. But while this solution worked, it restricted arm and body movement so much, that it would be impossible to move in the garment when underground. Even though the fabric worked but was bulky and restricting, we wanted to take this idea to the next level and alter the design so it could work. We stuck with the fabric like idea and used thick string that was woven in a tight criss cross design to make a cage like structure that would be placed in between each of the rings. This solution worked a lot better and allowed for more arm and body movement, while still protecting the body from falling rocks.

For our third iteration we wanted to find a way of decorating the wood to make a more ornate look. At first we though of the idea to mirror the images found in ancient cave paintings to connect back to the idea of living underground. we decided this did not look as interesting as we thought seeing as it would not look like anything unless you were up close at the right angle. We than thought of cutting out diamonds to connect to the idea of living in mines. the diamond shapes created a beautiful look for the wood that was both intricate but also simplistic like the rest of the design.

https://cambridge.nuvustudio.com/studios/exo-anotomy-v1/underground#tab-portfolio

Final Presentation

Emma Mirrer

THE ENVIRONMENTAL SURVIVAL MASK FINAL PRESENTATION

Conner Olsen

Ultrasonic Sensor (Large)

Liam Brady

Ultrasonic sensors are distance sensors that use sound waves to detect how far away an object is. They send out high frequency bursts of sound and listen for its echo. They then determine how far away the object is based on how long it takes for the sound to return to the sensor. This variety requires an Arduino library to operate.

 

NewPing Library https://libraries.io/github/PaulStoffregen/NewPing

#include <NewPing.h>

NewPing mysensor(5, 6, 200);

void setup() {
  Serial.begin(9600);
}

void loop() {
  int pingTime = mysensor.ping();

  int distance = mysensor.ping_in();

  int distance_cm = mysensor.ping_cm();

  Serial.println(distance);
}

NeoPixel LED Strip

Liam Brady

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

Servo

Liam Brady

Servos are specialized motors that support precise control. Rather than spinning off to oblivion like a motor, servos let the designer specify exactly where they want the object to rotate to. Most common servos allow for 180º of rotation.

#include <Servo.h>
Servo myservo;

void setup() {
  myservo.attach(9);
}

void loop() {
  int val = analogRead(A0);
  val = map(val, 0, 1023, 0, 179);

  myservo.write(val);

  delay(15);
}

Concave Mirror - Anish Kapoor - 2010 MoMA

Aaron Laniosz
1 / 3

Untitled
Anish Kapoor (British (born India) 1954)
Date: 2007
Medium: Stainless steel
Dimensions: 89 3/4 x 89 1/4 x 16 1/2 in. (228 x 226.7 x 41.9 cm)

Created for public interaction and engagement with the surrounding space, this sculpture draws the viewer in with its refined surface and startling optical effects of depth and dimension. From a body of Kapoor's work of mirrorlike pieces that reflect or distort the viewer and the surroundings and suggest the notion of continuous space, it offers a dazzling experience of light and a startling optical effect. Deeply rooted metaphysical polarities are at play in Kapoor's work: presence and absence, being and nonbeing, solidity and intangibility, and he draws on both Western and Eastern cultures for inspiration. His intention to engage the viewer and provoke a physical and visceral response is achieved in this reflective sculpture with its faceted facade that fuses the work, the viewer, and the environment into one pixelated, constantly fluctuating mosaic.

The distance and angle that one stands from the mirror's surface affects how the image of the viewer is reflected. This is a very interesting work of art in that it brings the curiosity out in the viewer and creates a dance-like interaction with the sculpture, as one's tendency is to move around in front of the piece to see how that changes one's perception of it. The viewer can actually "create" their own visual experience based on how they stand and move in front of the mirrors.

https://artsology.com/mirror-art.php

https://www.metmuseum.org/art/collection/search/495458

Massoud Hassani - Mine Kafon

Aaron Laniosz

http://minekafon.org/

The Mine Kafon ball is a large wind-powered device, heavy enough to detonate landmines as it rolls across the ground. Massoud Hassani drew inspiration for the project from his childhood growing up on the outskirts of Kabul, where he would play around the minefields with homemade, wind-powered toys.