Skip to content

5. E-textiles

Portada

E-textiles (or electronic textiles) are fabrics that integrate electronic components, allowing them to perform smart or interactive functions. These textiles are capable of detecting, responding, and even storing information through the incorporation of circuits, sensors, and other electronic devices within the threads or fibers of the fabric itself.

SOFT ELECTRONICS - Helen Leigh

MAIN CHARACTERISTICS:

Electrical conductivity: The threads or fibers of e-textiles are often made from conductive materials or have special coatings that allow the transmission of electricity. This makes them capable of integrating circuits and electronic devices.

Integrated sensors and actuators: They may include motion, temperature, pressure sensors, and even biometric monitors like heart rate sensors. These devices can collect data from the environment or the body and send it to a processing system.

Wireless connectivity: Many e-textiles are capable of connecting to other electronic devices, such as phones or computers, using technologies like Bluetooth or Wi-Fi to transmit data or receive instructions.

Comfort and flexibility: Unlike other electronic devices, e-textiles are designed to be soft, lightweight, and flexible, making them comfortable to wear as clothing or accessories without losing their technological functionality.

APPLICATIONS

describe what you see in this image

The House of Rox

The combination of electronics and textiles opens a world of possibilities that only the most creative minds know how to take advantage of. One day, while searching for content on tiktok, I came across the profile of a character who does DRAG in a very interesting way.

The House of Rox is the culmination of years of dedication by Silver Rox, the guiding force behind our creative family. His pursuit of perfection spans makeup, sewing, confection, and bringing his vivid imagination to life through 3D rendering. This vibrant creative energy attracted Alan, with his natural flair for creativity, and later Hex joined our team.

The shiny Jacket

@waddaboutya Replying to @rocknrollbeautyqueen I started this 5 months ago #beetlejuice #halloweencostume #dragking ♬ Main Titles - From "Beetlejuice" Soundtrack - Danny Elfman
@waddaboutya Would you wear this Jacket? £1 raffal up now ✌️ #thesimpsons #upcycle #vinted #hotnashvillenights ♬ original sound - Silver Rox


Primrose Dress | Adobe

The Primrose Dress is an interactive digital art project created by Adobe, where creativity is combined with artificial intelligence and machine learning. The purpose of this project is to explore the fusion of technology with fashion design through a digital dress that can evolve and transform dynamically in response to different inputs.


LET´S MAKE E-TEXTILES

The microcontroller

The Seeed Studio XIAO RP2040 is a compact microcontroller featuring a dual-core ARM Cortex M0+ processor, running up to 133 MHz. It offers 264KB of SRAM, 2MB of flash memory, and multiple interfaces, including 14 GPIO pins, I2C, UART, and SPI. Its small size (21x17.8mm) makes it ideal for wearable and small projects. Compatible with programming platforms like MicroPython, Arduino, and CircuitPython, it is designed for flexibility and ease of use in electronics projects.

Laser cut


The Schematic

There are different design programs to create the schematics but, Kicad is much easier and free.

To download Kicad click here!

Laser cut

I did different practices to understand how I could use different conductive materials like thread, cable, conductive tape and metal buttons. And the first thing was to do a "BLINk TEST" to know that the connections I had made without soldering worked.

So once I checked that it worked well. I included a servo motor and worked on 2 codes, one to turn on the leds with the button and another to move the servo motor at the same time.

The components

Laser cut

Arduino code

void setup() {
 pinMode(D0, OUTPUT);

}

void loop() {
  digitalWrite(D0, HIGH);
  delay(1000);
  dgitialWrite(D0, LOW);
  delay(1000);
}

The Schematic

Laser cut

The components

Laser cut

PROGRAM (3 Leds & button)

Arduino code

int state;
void setup() {

 pinMode(D1, INPUT);
 pinMode(D0, OUTPUT);
 pinMode(D6, OUTPUT);
 pinMode(D7, OUTPUT);

}

void loop() {
  state=digitalRead(D1);
  if(state==HIGH)
  {
    digitalWrite(D0, HIGH);
    digitalWrite(D6, HIGH);
    digitalWrite(D7, HIGH);
  }
  else{
    digitalWrite(D0, LOW);
    digitalWrite(D6, LOW);
    digitalWrite(D7, LOW);    
  }

}

PROGRAM (3 Leds & button + servomotor)

Arduino code

#include <Servo.h>
Servo raul;

int servoPin = D2;
int state;
void setup() {

 raul.attach(servoPin);
 pinMode(D1, INPUT);
 pinMode(D0, OUTPUT);
 pinMode(D6, OUTPUT);
 pinMode(D7, OUTPUT);
}

void loop() {
  state=digitalRead(D1);
  if(state==HIGH)
  {
    digitalWrite(D0, HIGH);
    digitalWrite(D6, HIGH);
    digitalWrite(D7, HIGH);
  }
  else{
    digitalWrite(D0, LOW);
    digitalWrite(D6, LOW);
    digitalWrite(D7, LOW);   
  }
  {
    raul.write(0);
    delay (1000);
    raul.write(180);
    delay(1000);
  }
}

CONNECTION TEST

NEOPIXELS

The lavender flower

For this exercise I used a leather template designed by my friend Maricruz and used copper wire to create the joints and with a little solder I fixed the microcontroller. It looks like a spider but it helped me a lot to make the connections and tests in a faster way.

Laser cut

The microcontroller

Laser cut

Arduino code

#include <Adafruit_NeoPixel.h>

#define PIN            D7
#define NUMPIXELS      4

Adafruit_NeoPixel strip = Adafruit_NeoPixel(NUMPIXELS, PIN, NEO_GRB + NEO_KHZ800);

void setup() {
  strip.begin();
  strip.show(); 
}

void loop() {
  for(int i = 0; i < NUMPIXELS; i++) {
    strip.setPixelColor(i, strip.Color(255, 0, 0));  // Red
    strip.show();
    delay(100);
    strip.setPixelColor(i, strip.Color(0, 255, 0));  // Green
    strip.show();
    delay(100);
    strip.setPixelColor(i, strip.Color(0, 0, 255));  // Blue
    strip.show();
    delay(100);
  }

  // LEDs OFF
  strip.clear();
  strip.show();
  delay(500);
}


COPPER TAPE + LEDS

In this exercise I used conductive copper tape and attached it with the sewing machine to a piece of textile with a zipper to see how the tracks worked if they surrounded the entire piece. And to turn on the LEDs I used a 3-volt battery and I used some alligator clips and a magnetic button to create a switch.

Laser cut


FORCE SENSOR (VELOSTAT)

For my final practice, I made a force sensor out of a teddy bear. So I made a mini t-shirt and attached the force sensor behind the pocket and used wires to connect the components.

For the code I read the signal with the serial monitor to know the range I should use. That way, when you push the bear its heart will turn on.

The Schematic - Bear heart

Laser cut

The components

Laser cut

Arduino code

int sensor_fuerza= D0;
int led=D7;
int lectura;
int brillo;
void setup()
{ 

  pinMode(led, OUTPUT);
  Serial.begin(9600);
}

void loop()
{
lectura = analogRead(sensor_fuerza); // Resistance equals sensor reading (Analog 0)
Serial.print("Lectura Analogica = ");
Serial.println(lectura); 
// Change the analog reading range (500-1023)
// We use in analogWrite 8 bits (0-255) configured in the map
brillo = map(lectura, 500, 1023, 0, 80);
analogWrite(led, brillo); 
delay(100); //One hundred “ms” wait on each reading
}

Serial communication


The final result