The DXARTS SoftLab is a studio and an online platform whose mission is to examine the role of workmanship in artistic research, to redefine the use of crafting in the post-digital era, and to explore the body as an interface of control and resistance. It is part of the Department of Digital Arts and Experimental Media (DXARTS) at the University of Washington in Seattle.

LetMeGo by Sadaf Sadri

LetMeGo by Sadaf Sadri

This project uses a Middle Eastern love spell to talk about social norms and its pressure on individuals. Using a pressure sensor made with Copper Taffeta Fabric and Velostat with a laser cut pattern of the love spell, LetMeGo attempts to question the necessity of love, family and soulmate in its normativity.

As a queer BIPOC person, I have always struggled with fitting myself in these norms, therefore, this body of work integrates love and noise to reject intimacy by crying out in noise when it is touched.

Materials: Love Spell, Conductive Fabric, Piezo Material, Speaker, Arduino Uno.

Code:

const int sensor = A0;      // Analog input pin that the potentiometer is attached to
const int speaker = 9;      // Analog output pin that the speaker is attached to
int sensorValue = 0;     // value read from the pot
int freq = 0;     // value output to the PWM (analog out)
void setup() {      // initialize serial communications at 9600 bps
  Serial.begin(9600);
  pinMode(sensor, INPUT_PULLUP);
}
void loop() { // read the analog in value:
  sensorValue = analogRead(sensor);     // map it to the range of the analog out
 freq = map(sensorValue, 0, 1023, 0, 20000);
 if (sensorValue < 40){     // change the analog out value:
  tone(speaker, freq);
 }
 else {
   noTone(speaker);
 }

Inspirations:

Book of Spells ( طلسمات طمطم هندی)

Kobakant’s Pressure Sensor Tutorial https://www.kobakant.at/DIY/?p=232

Morehshin Allahyari

http://www.morehshin.com/artworks/

#Spell # PressureSensor #Speaker # Zine # E-Textile #Laser-Cutter # Conductive-Thread # Arduino

Sign Language Glove By Cindy Xu

Sign Language Glove By Cindy Xu

Sonic Patchwork by Rylie Sweem

Sonic Patchwork by Rylie Sweem