Monthly Archives: March 2011

Media Controller

Arduino Code: void setup() { Serial.begin( 9600 ); pinMode( 2, INPUT ); } void loop() { int accelX = analogRead( 0 ); int accelY = analogRead( 1 ); int switchState = digitalRead( 2 ); Serial.print(accelX, DEC); Serial.print(“,”); Serial.print(accelY, DEC); Serial.print(“,”); … Continue reading

Posted in Uncategorized | Leave a comment

Stupid Pet Trick: Kelis makes you a milkshake

Digging through my desk drawer, I found this freebie Kelis cd I got in a gift bag from fall fashion week. Not really being a Kelis fan, I was going to throw it away but decided to open it up … Continue reading

Posted in Assignments | Leave a comment

Lab: Tone Output

Like the servo labs, this was pretty straight forward but fun. Here is the video:

Posted in Labs | Leave a comment