Main | Progress...... »

Computational Media Final Project - "Pull a Christian"

My final project will be throwing me around a room using the built in SMS sensor in the macbooks.
axes.jpg
I would like to do something similar to my Human Graphic Equalizer
HEqualizer.jpg
Where you will use the data being read from the SMS sensor to throw me around a room. I know it will get a little to complicated if the user will has the ability to tilt the computer at any angle or direction, so I'm also thinking of building an enclosure to put the computer which will limit the tilt to only the X and Y axes.

In order to execute this I'm will be using Dan Shiffman's SMS library along with his sample code:
import sms.*;

void setup() {
size(200,200);
}

void draw() {
int[] vals = Unimotion.getSMSArray();
println(vals[0] + " " + vals[1] + " " + vals[2]);
}

Which reads the values of the X, Y and Z axes.

TrackBack

TrackBack URL for this entry:
http://itp.nyu.edu/~cb1591/cgi-bin/mt/mt-tb.cgi/32

Post a comment

(If you haven't left a comment here before, you may need to be approved by the site owner before your comment will appear. Until then, it won't appear on the entry. Thanks for waiting.)