Category Archives: Uncategorized

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

Getting Creative! [Analog In Lab]

Posted in Uncategorized | Tagged | Leave a comment