Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
School of Maaa Day 1 - Switches
Search
Becky Stewart
August 13, 2014
Technology
0
5.7k
School of Maaa Day 1 - Switches
First day of workshop at School of Maaa in Berlin.
Becky Stewart
August 13, 2014
Tweet
Share
More Decks by Becky Stewart
See All by Becky Stewart
Making Grooves With Needles: Using e-textiles to encourage gender diversity in embedded audio systems design
theleadingzero
0
390
Fabricademy: Wearables and E-Textiles II
theleadingzero
0
510
The Emergence of E-Textiles
theleadingzero
0
150
Audio Signal Processing with E-Textiles
theleadingzero
0
180
Cruftfest Kit
theleadingzero
0
160
Audio and E-Textiles
theleadingzero
0
350
So You Want to Make a Wearable
theleadingzero
0
90
School of Maaa Day 3 - Capacitive Sensing
theleadingzero
0
430
School of Maaa Day 2 - Voltage Dividers
theleadingzero
0
360
Other Decks in Technology
See All in Technology
要件定義・デザインフェーズでもAIを活用して、コミュニケーションの密度を高める
kazukihayase
0
120
AI時代を生き抜くエンジニアキャリアの築き方 (AI-Native 時代、エンジニアという道は 「最大の挑戦の場」となる) / Building an Engineering Career to Thrive in the Age of AI (In the AI-Native Era, the Path of Engineering Becomes the Ultimate Arena of Challenge)
jeongjaesoon
0
150
COVESA VSSによる車両データモデルの標準化とAWS IoT FleetWiseの活用
osawa
1
290
Firestore → Spanner 移行 を成功させた段階的移行プロセス
athug
1
480
Autonomous Database - Dedicated 技術詳細 / adb-d_technical_detail_jp
oracle4engineer
PRO
4
10k
5年目から始める Vue3 サイト改善 #frontendo
tacck
PRO
3
220
20250910_障害注入から効率的復旧へ_カオスエンジニアリング_生成AIで考えるAWS障害対応.pdf
sh_fk2
3
260
これでもう迷わない!Jetpack Composeの書き方実践ガイド
zozotech
PRO
0
860
自作JSエンジンに推しプロポーザルを実装したい!
sajikix
1
180
共有と分離 - Compose Multiplatform "本番導入" の設計指針
error96num
2
570
Webブラウザ向け動画配信プレイヤーの 大規模リプレイスから得た知見と学び
yud0uhu
0
230
複数サービスを支えるマルチテナント型Batch MLプラットフォーム
lycorptech_jp
PRO
1
380
Featured
See All Featured
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
162
15k
The Illustrated Children's Guide to Kubernetes
chrisshort
48
50k
KATA
mclloyd
32
14k
Why Our Code Smells
bkeepers
PRO
339
57k
Principles of Awesome APIs and How to Build Them.
keavy
126
17k
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
12
1.1k
Visualization
eitanlees
148
16k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
18
1.1k
Designing for Performance
lara
610
69k
The Cult of Friendly URLs
andyhume
79
6.6k
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
8
520
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
31
2.2k
Transcript
Becky Stewart http://theleadingzero.com
[email protected]
@theleadingzero
arts technology education company We teach coding and electronics skills.
We prioritise using free and open source tools. Coding Electronics
We focus on creative projects involving activities such as storytelling,
gaming, and crafting. arts technology education company
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
We work with arts and cultural organisations. arts technology education
company
None
GPS Shoes dominicwilcox.com/portfolio/gpsshoes
the people of the GPS Shoes Nicolas Cooper ! Stamp
Shoes Dominic Wilcox Becky Stewart
Meta-Projection Jacket http://www.dazeddigital.com/music/article/16139/1/vase-at-the-tate
the people of the Meta-Projection Jacket Melissa Matos! of TRUSST
Becky Stewart Jacques Greene Rad ! Hourani
Human Harp humanharp.org
None
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
None
Wearables
None
None
E-Textile Techniques
Lilytronica http://afroditipsarra.com/index.php?/on-going/lily/
None
Fabric Speakers http://xslabs.net/accouphene/ http://www.kobakant.at/DIY/?p=2936
None
The Crying Dress Kobakant http://www.kobakant.at/?p=222
Drapery FM Ebru Kurbak and Irene Posch http://ebrukurbak.net/draperyfm/
drapery FM
None
What We’ll Do - Soft Sensors Review applications Delve into
the theory Put into practice This afternoon: switches Tomorrow: analog sensors Friday: capacitive sensing
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/
Switches
Pig with Wigs
Pig with Wigs
None
TV Be Gone
Tilt Sensor
Tousle
GPS Shoes
Why are switches great? Cheap: both in material and in
processing No calibration
pull-up/pull-down resistors
None
5V GND digital pin resistor switch
5V GND digital pin resistor switch
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 }
Challenge Design and prototype a wearable soft circuit sensor using
only switches as the input.