The seminar introduced us theoretical and practical principles for embedding computation into physical space. We looked at how information and communication technologies are disappearing into our surrounding spaces, how architecture might be considered an operating system, and how micro controllers are becoming part of everyday objects.
Then we imagine, design, visualize and practically demonstrate a network that seamlessly integrates into physical space.
input:light,sound,touch
output:sound,light,rotation
box rules
when turn on play 3 notes a-b-c
if touching then play note a
if light then play note b and rotate 90
if sound then play note c and blink
Start Up
playNote(’a’,50);
delay(100);
rotate clockwise(60);
delay(100);
playNote(’d’,100);
delay(100);
playNote(’f’,100);
case 1
if (touchSensor) {rotateClockwise(80);delay(100);playNote(’a’,50);}
if (lightSensor) {rotateAntiClockwise(80);delay(100);playNote(’d’,100);setLampOff();}
if (soundSensor) {setLampOn();delay(100);playNote(’f”,100);}
Milling the Boards

