Skip to content

5. E-textiles

TO BE EDITED...

This week I worked on making a Digital Sensor and a Analogue Sensor to integrate it into a soft circuit with Arduino

Magical Unicorn Poo Button

Push Sensor - Digital Switch

Touch Sensitive Fabric

Capacity Touch Sensor - Analogue Switch

Getting Started with E-Textiles

Voltage and Resistors

First Steps with Arduino

Quick and Dirty Sensors with Emma

ON and OFF Digital Switch

Analogue Read of the Analogue Switch

Creating Switches

Digital Sensor

Process of the Magical Unicorn Poo Button

How to make a digital switch push sensor integrated to a soft circuit

Analogue Sensor

Process of the Touch Sensitive Textile

Testing the Resistance with the Multimeter

Capacitive Sensor

Simple Capacitive Sensor with 1 LED

Coding for a Simple Capacitive Sensor with 1 LED

// the setup function runs once when you press reset or power the board
void setup() {
  // initialize digital pin LED_BUILTIN as an output.
  pinMode(LED_BUILTIN, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
  digitalWrite(LED_BUILTIN, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(1000);                       // wait for a second
  digitalWrite(LED_BUILTIN, LOW);    // turn the LED off by making the voltage LOW
  delay(1000);                       // wait for a second
}

Modified Capacitive Sensor Code with 2 LEDs

Modified Coding for a Simple Capacitive Sensor with 2 LEDs

// the setup function runs once when you press reset or power the board
void setup() {
  // initialize digital pin LED_BUILTIN as an output.
  pinMode(LED_BUILTIN, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
  digitalWrite(LED_BUILTIN, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(1000);                       // wait for a second
  digitalWrite(LED_BUILTIN, LOW);    // turn the LED off by making the voltage LOW
  delay(1000);                       // wait for a second
}

Research

Notes from the Lectures

Conductive Materials

Inspirations from the WWW

Schweppes created touch sensitive dress to highlight female harassment in nightclubs


Last update: June 30, 2021