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¶
Touch Sensitive Fabric¶
Getting Started with E-Textiles¶
Voltage and Resistors¶
First Steps with Arduino¶
Quick and Dirty Sensors with Emma¶
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¶
Capacitive Sensor¶
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 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¶
E-Textiles Links¶
- Projects with Electric Paint
- Capacity Sensor with Electric Paint
- Neoprene Bend Sensor
- Button Hole Switch
- Soft Switches by Liza Stark
- EAGLE download for Drawing Circuits
- Soft Switches by Liza Stark
- Soft Sensors by Liza Stark
Last update: June 30, 2021