VVVVVStéphanie Vilayphiou

5. E-textiles

References

Gloves

Irene Posch's Early Winter Night Biking Gloves. I find those very useful! Instructions here

Glow Glove is a glove made for recovery periods for people who got strokes.o

Claire Williams

Embroidered speaker.
Electromagnetic walks. Knitted antennas to listen to electromagnetic fields in the urban environment.
Chants magnétiques.

Moon

From *Knitting Technology. A comprehensive handbook and practical guide* by David J. Spencer. Warp-knitted fabric antenna on the moon (Photo credit NASA)

e-textile summer camp samplers

Unstable Design Lab

Textile Animation


Magnetic Reverberations


Instagram post embedding not available.
Watch it on Instagram

Embroidered computer

In the 40 computer memories were made of intricate interweaving of copper wires. Women were the ones making them as they had the dexterity skills from sewing or other textile technique. Magaret Hamilton was the boss of the "rope mothers". The article "That Time When Computer Memory Was Handwoven by Women" retraces this history. My mother, who got employed at Hewlett Packard in the 80s to repair electronic cards, was hired because she was a seamstress even though she knew nothing about electronics.

A core memory module with a capacity of 128 bytes. Photo: Konstantin Lanzet/Wikimedia Commons
An 8-GB microSD card on top of 8-Bytes of magnetic-core memory. Photo: Daniel Sancho/Wikimedia Commons

In 2016, e-textile artist Irene Posch made a very beautiful version of a computer memory with embroidery and pearl-shaped magnets.

Irene Posch's Embroidered Computer.

Soft/Hard connections

I like the DIY battery holder in this sample:

Alice Sowa, Fabricademy 2023

Paper sensors

I really liked the paper sensors prototypes that Ieva Marija Dautartaitė made for Fabricademy 2023.

It reminded me of the Arduino paper piano project that I once made from Instructables.

Tooling

Irene Posch's tooling page lists quite some nice tools to build yourself for e-textile.

e-textile breadboards

References

Pattern dot matrix

The Pattern dot matrix is a tangible interface to program weaving patterns. It has been developed by Dave Griffiths within the Penelope research project.

Prior version in wood.
Pattern dot matrix with conductive thread.

In 2021, I got a subsidy to explore textile and code. I wanted to reproduce the textile version of the Pattern Dot Matrix, or make a textile breadboard. I've never had the time to do so. But now is the time! :)

Feltbread

Snap buttons

Knitted breadboard

e-textile pin probes

Two weeks ago, I helped my artist friend Wendy Van Wynsberghe to build soft pin probes from Irene Posch's tutorial.Wendy's paracords were quite thick so we had to modify the 3D printing file to make the holes bigger. Also there was an error in the file, the cap was not mirrored so the holes were not in front of each other when you'd close the case.

Wendy Van Wynsberghe's pin probes.
Conductive thread in machine knitted i-cord + sewing pin
Putting it into the pin probe.

.stl file for DIY pin probe, remixed from Irene Posch's.

Sewing pins with silver conductive thread as a pin head to make contact with through-hole components.

Prototypes on a failed knitted sock

A few weeks ago, I had already tried the different conductive threads/yarns that I had to check if a textile breadboard would work out. Only my conductive yarn from Bart & Francis didn't work for the breadboard as it is not conductive enough.

e-hajo Silver thread.
Adafruit stainless steel thread.
a metallic thread found by chance in the second-hand notions shop of Green Fabric.

Here is my unfinished breadboard. It works fine, I just need more time to chain-stitch all the lines!

Machine knitted full-needle rib in second-hand cotton + crochet chain stitches with silver thread.

Knitted sensors

I wanted to experiment the different conductive threads/yarns with my knitting machine. I could even explore techniques that I've never tried before: loops on single-bed, ottoman stitches, short rows ripples. Since those were my first attempts with these techniques, and with quite capricious threads, they were not very successful.

Using a dowel to make big loops.
Different knitted swatches with conductive threads.

Digital sensor: push button

Push button prototype with bought knitted conductive fabric.
Inside of the push button in felt. Holes made with hole puncher.
Machine knitted conductive thread with the plating feeder.
Same circuit with wearable LED.

Analog

When Liza Stark said that conductivity can be increased by proximity or by adding more material, I immediately thought of a good purpose for my Bart & Francis not-so-conductive yarn. I thought that it would work well for stroke switches.

Folds

I wanted to make a stroke sensor with fringes, but in the end, I ended up with a pressure sensor.

Stretch

Stretch sensor made with a simple crochet chain with the not-so-conductive yarn from Bart & Francis. I wanted to put the chain on a glove above my finger to activate an LED but I didn't have time.

Blow

I wanted to make a blow sensor by putting a lot of tiny conductive threads that could be blown onto an LED to make contact.

First try with the LED on a breadboard:

Second try with the LED on a paracord:

Update
  • After reflection, I should have looked at the Stroke sensor on Kobakant to design the blow sensor to make it more stable.

Small project

I wanted to use the pressure sensor to control a motor with a fan on it; the fan would then blow the blow sensor to control an LED. Each part functions by itself, but I didn't have time to combine all experiments.

Tinkercad

Tinkercad is an online CAD tool mostly aimed for kids. It's well-known for simple 3D modelling (I use it all the time!) but it's circuit design tool is less known.

Create a new circuit design.
You can import components, even a lemon battery!
My circuit schematics.

Arduino code

Here's the pressure sensor on the textile breadboard connected to Arduino to get the analog values when we press the knitted swatch. The video shows the analog pin on the LED, it should be placed on the knitted sensor instead. When I press the sensor, the value decreases but the LED goes brighter. I would have expected that the values would get higher actually as it is supposed to read Voltage values according to the AnalogRead documentation.

Update

During Week 8, on wearable electronics, I took some time to refine my Arduino circuit to get an analog ouput from my sensor then controlling the LED with Arduino.

int ledPin = A0;
int sensorPin = A5;
int sensorValue = 0;
int newSensorValue = 0;


void setup() {
  Serial.begin(9600);
  pinMode(sensorPin, INPUT);  
  pinMode(ledPin, OUTPUT);

}

void loop() {
  // put your main code here, to run repeatedly:
    sensorValue = analogRead(sensorPin);
    newSensorValue = map(sensorValue, 0, 1023, 0, 255);
    Serial.println(newSensorValue);
    analogWrite(ledPin, newSensorValue);
}