Slide 1

Slide 1 text

Becky Stewart http://theleadingzero.com becky@theleadingzero.com @theleadingzero

Slide 2

Slide 2 text

arts technology education company We teach coding and electronics skills. We prioritise using free and open source tools. Coding Electronics

Slide 3

Slide 3 text

We focus on creative projects involving activities such as storytelling, gaming, and crafting. arts technology education company

Slide 4

Slide 4 text

We run workshops teaching adults and kids how to use technology in creative projects. 1 2 3 Drop-In Demo Drop-In Making Structured Workshops arts technology education company

Slide 5

Slide 5 text

We work with arts and cultural organisations. arts technology education company

Slide 6

Slide 6 text

No content

Slide 7

Slide 7 text

GPS Shoes dominicwilcox.com/portfolio/gpsshoes

Slide 8

Slide 8 text

the people of the GPS Shoes Nicolas Cooper ! Stamp Shoes Dominic Wilcox Becky Stewart

Slide 9

Slide 9 text

Meta-Projection Jacket http://www.dazeddigital.com/music/article/16139/1/vase-at-the-tate

Slide 10

Slide 10 text

the people of the Meta-Projection Jacket Melissa Matos! of TRUSST Becky Stewart Jacques Greene Rad ! Hourani

Slide 11

Slide 11 text

Human Harp humanharp.org

Slide 12

Slide 12 text

No content

Slide 13

Slide 13 text

the people of the Human Harp Adam Stark John Nussey Di Mainstone Hollie Miller Léa Aubertin David Blair Ross Becky Stewart Yuli Levtov Trinity Laban Theatre

Slide 14

Slide 14 text

No content

Slide 15

Slide 15 text

Wearables

Slide 16

Slide 16 text

No content

Slide 17

Slide 17 text

No content

Slide 18

Slide 18 text

E-Textile Techniques

Slide 19

Slide 19 text

Lilytronica http://afroditipsarra.com/index.php?/on-going/lily/

Slide 20

Slide 20 text

No content

Slide 21

Slide 21 text

Fabric Speakers http://xslabs.net/accouphene/ http://www.kobakant.at/DIY/?p=2936

Slide 22

Slide 22 text

No content

Slide 23

Slide 23 text

The Crying Dress Kobakant http://www.kobakant.at/?p=222

Slide 24

Slide 24 text

Drapery FM Ebru Kurbak and Irene Posch http://ebrukurbak.net/draperyfm/

Slide 25

Slide 25 text

drapery FM

Slide 26

Slide 26 text

No content

Slide 27

Slide 27 text

What We’ll Do - Soft Sensors Review applications Delve into the theory Put into practice This afternoon: switches Tomorrow: analog sensors Friday: capacitive sensing

Slide 28

Slide 28 text

Inspiration Kobakant - How to Get What You Want http://www.kobakant.at/ E-Textile Summer Camp http://etextile-summercamp.org/ Fashioning Technology http://fashioningtech.com/

Slide 29

Slide 29 text

Switches

Slide 30

Slide 30 text

Pig with Wigs

Slide 31

Slide 31 text

Pig with Wigs

Slide 32

Slide 32 text

No content

Slide 33

Slide 33 text

TV Be Gone

Slide 34

Slide 34 text

Tilt Sensor

Slide 35

Slide 35 text

Tousle

Slide 36

Slide 36 text

GPS Shoes

Slide 37

Slide 37 text

Why are switches great? Cheap: both in material and in processing No calibration

Slide 38

Slide 38 text

Slide 39

Slide 39 text

pull-up/pull-down resistors

Slide 40

Slide 40 text

No content

Slide 41

Slide 41 text

5V GND digital pin resistor switch

Slide 42

Slide 42 text

5V GND digital pin resistor switch

Slide 43

Slide 43 text

int switchPin = 7; ! void setup() { pinMode( switchPin, INPUT_PULLUP); Serial.begin( 9600 ); } ! void loop() { int switchValue; switchValue = digitalRead( switchPin ); ! Serial.println( switchValue ); delay( 300 ); // slow down to make it easier to read }

Slide 44

Slide 44 text

Challenge Design and prototype a wearable soft circuit sensor using only switches as the input.