Upgrade to Pro — share decks privately, control downloads, hide ads and more …

School of Maaa Day 1 - Switches

School of Maaa Day 1 - Switches

First day of workshop at School of Maaa in Berlin.

Becky Stewart

August 13, 2014
Tweet

More Decks by Becky Stewart

Other Decks in Technology

Transcript

  1. arts technology education company We teach coding and electronics skills.

    We prioritise using free and open source tools. Coding Electronics
  2. We focus on creative projects involving activities such as storytelling,

    gaming, and crafting. arts technology education company
  3. 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
  4. the people of the GPS Shoes Nicolas Cooper ! Stamp

    Shoes Dominic Wilcox Becky Stewart
  5. the people of the Meta-Projection Jacket Melissa Matos! of TRUSST

    Becky Stewart Jacques Greene Rad ! Hourani
  6. 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
  7. What We’ll Do - Soft Sensors Review applications Delve into

    the theory Put into practice This afternoon: switches Tomorrow: analog sensors Friday: capacitive sensing
  8. 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/
  9. 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 }