Week 5 & Project 1: New Body

 
Week 5 Textile

PROJECT TITLE: JellyFeel 

Final outcome

DESCRIPTION AND CONCEPT:

When we lose the ability to see the world, what can we do and what will the world be like? In this project, we explore how we can communicate with the world without a clear vision. Moreover, we also got inspiration from the jellyfish, because they didn’t have sight and they used their tentacle to sense their surrounding. Inspired by course reading about fashion, identity, and human perception, we came up with the idea of sensing our surroundings with our hands and letting our hands take over the job of our eyes. We will move with the lead of our hands, and when something is approaching us, we will change our color to reddish and reduce the brightness, that our body is giving out. Otherwise, we will appear a blue color that represents our safety, where everything is out of your way and you are in a safe zone. 

RESEARCH & DEVELOPMENT

This wearable serves as a powerful metaphor for human interaction and relationships. Just as the LED lights respond to changes in proximity, so too do individuals in social settings. When we are close to someone, our interactions may become more intense or emotionally charged, as represented by the transition to red lights. Conversely, as we move away, our interactions may become more distant or detached, reflected by the shift back to blue lights. Initially, the blue lights may represent a sense of safety or self-preservation, encouraging the wearer to maintain a comfortable distance from others. However, as the lights turn red in close proximity, they signal a willingness to let down barriers and engage more deeply with others, even if it means exposing vulnerabilities or insecurities.

Animal inspiration: Many species of jellyfish are bioluminescent, meaning they can emit light. This ability is often used for communication. Experiment with creating fabric tentacles that attach to the body and respond to stimuli, such as touch or sound. These tentacles could provide sensory feedback or assist with navigation in the wearer’s environment. Jellyfish has a bell-shaped body. 

One specific artist we looked into who inspired our idea was Lucy MaRae.


Bubbelle, experiment in decrypting the human body

McRae’s work creates a very intimate exchange between the body and the spaces it occupies. Moreover, she pays attention to the knowingness of the materials. She tried to use familiar everyday objects and materials, and transform them and take them to another place than they were. Her works pay attention to the extension of the senses. These inspired our project of the idea of distorting senses  and transforming senses to other senses. Initially, we wanted that wearable to take up space and restrain the wearer’s movement, so that they can only use the  remaining body parts to feel the surroundings. We also wanted to use materials that are common, so we chose transparent plastic. Our wearable was meant to be heavy and cover most part of our body because it should represent the weight of a safe space.

References

Lucy MaRae   Body Architect

a future human body capable of physiological transformations.

Behnaz Farahi

The goal is to explore how wearables can become not only a vehicle for self-expression, but also an extension of our sensory experience of the world.

PRODUCTION:

2 Neopixels

2 distant sensors

3 micro:bits

cotton

different types of fabric

transparent plastic

optic fiber

Laser paper

FABRICATION:

Initial sketch 

We started by creating a jellyfish-like headpiece that can distort eyesight. We wanted to use transparent plastic that can be inflatable to take up the volume. We brainstormed balloons and other plastic packaging materials, but they were not easy to manipulate and control, and had the risk of explosion. So we decided to use this plastic foam material. It is satisfactory because it creates the feeling of inflatable, which is exactly what we want.

However, to add more sensors and layers to the headpiece, we placed a piece of gauze as a support.

To hide the sensors and better support the plastic foam material, we eventually used cardboard to cut the shape of a hat and placed the neopixels through the hat.

We added cotton to cover the sensors and the cardboard.

To create tentacles, we sewed diamond-like laser paper to a line of fabric and placed them next to the neopixels. They are long and soft, can produce a light effect, and also can move based on the wearer’s movements. 

SENSORS

The interactivity our project intends to create is to use hands to sense the world when eyesight is distorted using distance sensors and neopixels. The neopixels connect the arms, which are like tentacles. The distance sensors are placed on the hands and the distance value sensed is transported to the neopixels.

Integrate LED lights or light-emitting fibers into the fabric to create sensory extensions that respond to touch or movement. These light patterns could serve as a new form of communication or expression for the wearer.

The first version is the direct transition of the color blue and red. With Marcela’s suggestion, we modified the code to have a more smooth transition between the colors, and made more changes to the less besides the color, including the number of LEDs, brightness, and more colors

When there is nothing near the wearer, the whole strip will show blue color. When something is approaching, the number of LEDs shining will decrease and the color gradually becomes more red. 

For the final version, the color changes based on the modification of RGB. When something is approaching, RED value increases, and vice versa.

During the work, Smile and I collaborated well. I mainly came up with the initial idea, and we developed the idea and worked on it together. 

CODE:

Distance sensor/Micro bit block code

JavaScript:

let Distance = 0
radio.setGroup(156)
basic.forever(function () {
Distance = sonar.ping(
DigitalPin.P0,
DigitalPin.P1,
PingUnit.Centimeters
)
serial.writeValue("d", Distance)
radio.sendValue("s2", Distance)
basic.pause(100)
})
JavaScript for Neopixel:

radio.onReceivedValue(function (name, value) {
if (name == "s1") {
SensorValue = value
} else {
SensorValue2 = value
}
dis = (SensorValue + SensorValue2) / 2
LEDsOn = Math.round(Math.map(dis, 0, 250, 10, numberOfLEDs))
})
let blue = 0
let reddec = 0
let bluedec = 0
let red = 0
let brightness = 0
let LEDsOn = 0
let dis = 0
let SensorValue2 = 0
let SensorValue = 0
let numberOfLEDs = 0
radio.setGroup(156)
numberOfLEDs = 60
let strip = neopixel.create(DigitalPin.P1, numberOfLEDs, NeoPixelMode.RGB)
basic.forever(function () {
serial.writeValue("sum", dis)
brightness = Math.constrain(dis, 10, 100)
strip.setBrightness(brightness)
red = Math.map(dis, 0, 40, 255, 0)
bluedec = Math.map(dis, 0, 40, 0, 20)
reddec = Math.map(dis, 40, 500, 20, 0)
blue = Math.map(dis, 40, 500, 100, 255)
basic.pause(200)
if (dis < 40) {
serial.writeValue("red", red)
serial.writeValue("bluedec", bluedec)
strip.clear()
for (let index = 0; index <= LEDsOn; index++) {
strip.setPixelColor(index, neopixel.rgb(red, 0, bluedec))
strip.show()
}
} else {
serial.writeValue("reddec", reddec)
for (let index = 0; index <= LEDsOn; index++) {
strip.setPixelColor(index, neopixel.rgb(reddec, 10, blue))
strip.show()
}
serial.writeValue("blue", blue)
}
})

PROBLEM:

Since we use 3 micro:bits, the connections between wires are very delicate, so we try to cut wires and use screws to fix the connection.

We tried using fiber optic because we were inspired by the light effect and it is similar to the bioluminescence of jellyfish. However, the light is very dim. 

CONCLUSIONS:

In this project, our goal is to explore fashion-distorting senses and how they affect our perception of the world.  We also try to explore human relationships regarding the surroundings through this wearable. Our final outcome is a representation of this goal. We had an intention to choose every material that we used and how they were connected. The volume it takes up, the space it creates to blur the sight and the distance sensor’s connection with the neopixels to use touch to sense the surroundings align with the project prompt to distort the senses and explore new body boundaries and capabilities.

This project takes me and Smile a lot of time, from the concept and fabrication. I’m proud of our intentions to make a wearable not only for the middle part of the body. We spend a lot of time on the design of the headpiece. We decided on the plastic we wanted to use and had a frame quickly. But to hide the sensors and make the wearer more comfortable, we changed the inside of the headpiece, cut a cardboard hat, and put the cloth in it. Our headpiece has more than 5 layers, which was designed intentionally but turned out a little too many. I’m satisfied with the space we created with the current material, but there can be improvement in the shape and the layers. During the making process, we encountered many difficulties with both fabrication and coding. It was hard to create the textiles we wanted and the desired effect for the neopixels. Our decision with micro:bit made the coding part and the wire-connection part harder. With help from Marcela and Rudi, we managed to fix the connection and the programming.

Potential improvement:

  1. The current appearance of the wearable looks more like a costume instead of fashion. For improvement, I want to change the shape of the headpiece to make it more like a hat with an irregular shape. The current length of the headpiece may be too long and it’s better to make it shorter and design a clear demarcation line between the headpiece and the tentacles.
  2. Another problem is that we used 2 neopixel strips, but the light is hard to notice covered by the plastic. We can definitely try to add more neopixels, but we need to consider the balance between the power needed for multiple neopixels to the micro:bit. Also, for now, the led lighting up is still not very smooth. Due to the long responding time of the distance sensor, this is a hard problem to solve.
  3. What we can also think about in the future is the use of sensors. For this project, we use the distance sensor placed on the hands, but we can certainly think of placing it on other parts of our body, for example on our feet. Also, the use of distance sensor represents the sense of touch, but this idea of transforming senses and its influence on our perception of the world can expand to other senses, hearing for example.

Reference

Davis, Fred (1992) ‘Do Clothes Speak? What makes them Fashion?’ in: Fashion, Culture and Identity. Chicago: The University of Chicago Press, pp. 1–18

See Yourself Sensing: Redefining Human Perception

Material Behaviours in 3D-Printed Fashion Items – Behnaz Farahi

Lucy McRae: Body Architect

Leave a Reply

Your email address will not be published. Required fields are marked *