When I say you say

projects and stuff

[midterm]mobile_media

18.02.2009 (11:42 pm) – Filed under: Mobile Media ::

My midterm proposal involves the mobile smart phone as a tool of expression and collection. Today on my way to ITP I documented my commute by taking photos of graffiti with my Iphone. Documentation is vital to any process, and this experiment strengthened my interest in this particular form of expression.

What I intend to do is to have smart phone users document graffiti (pictures) and street music (video) during their daily routines. While I experimented the still part of my project today, I had cool graffiti to look like while I was riding the train. During that short or lengthy ride, people listen to music, read books or magazines, or just stare into the motion outside the train window. Why not review the media that you have in your smart phone in aims to make the subway / metro experience more enjoyable.

Graffiti and street music fall under a similar umbrella, they all are and happen on the streets, outside! The documentation of this material provides a larger spectrum of awareness in relationship to were you are located. In New York City we experience street expression very frequently. Street musicians play their music in heavy traffic stations such as Union Square, Bedford ave stop, etc. Graffiti, well, graffiti is everywhere. You can’t avoid it, and I dislike when it gets taken away. Because the money used to clean up graffiti is such a waste.

Music  and graffiti on the streets will be the center of my project. People around the world will see the art that is everywhere on the streets. Users will upload the media taken with their smart phones and share it on a blog or website so that everyone can admire, comment  and rate.

Right now you can find my project here:

Mobile Media Midterm

Mobile Media Midterm

You can email graffiti. Click here to send e-mail

(for now).

glove begin again

21.11.2008 (4:29 pm) – Filed under: ICM,Physical Computing ::

int potPin = 0;    // Analog input 1

int potValue = 300;  // value read from sensor 1

int ledone = 9;    // led 1

void setup() {
// initialize serial communications at 9600 bps:
Serial.begin(9600);
}

void loop() {
potValue = analogRead(potPin);

if (potValue > 320 && potValue < 500){
analogWrite(ledone, 500);

analogWrite(ledone, potValue);
}
if (potValue < 330){
analogWrite(ledone, 0);
}

Serial.println(potValue);      // print the pot value back to the debugger pane
delay(20);

}

january_1