I combined the sound making exercise and the push button exercise. Thank you Jon for helping me!
CIRC-04 Servo
CIRC 08 by Long
ARDX DC Motor
int transistorPin = 9;
void setup()
{
pinMode(transistorPin, OUTPUT);
Serial.begin(9600);
}
void loop()
{
for(int i =0; i<255;i++)
{
analogWrite(transistorPin, i);
Serial.println(i);
}
for(int j = 255; j>0; j–)
{
analogWrite(transistorPin, j);
Serial.println(j);
}
}
CIRC-05: Using the 74HC595 Shift Register
Learning how to use the shift register was pretty awesome and important for my final project. I’ve included a video here.
ARDX Excericse 12 (Oscar de la Hera Gomez)
Music: Ghost by Ella Henderson (Oliver Nelson Remix)
O.
CIRC-12 RGB LEDs
Chelsea and Eden’s Final Project
Inspired by MFA Computer Arts Code Conscious exhibition in the SVA Flatiron Gallery, Chelsea and
have decided to team up to create an interactive digital/physical installation. We stumbled upon Terry Dame and Federico Muelas’s Sonic Graphite 2B exhibit while getting sodas. At first we thought it was a giant collaborative drawing on the wall, but we soon learned that the graphite to graphite contact would output sounds. The installation was fun and collaborative, and we revisited it two more times to figure out its construction.









