Changes

Students/Javier Lee

674 bytes added, 18:26, 19 March 2010
Final Project
==Final Project==
Our society has begun to come to an age where we are less interactive with each other physically. For example, instead of trying to see each other, we text or call making the interaction less intimate. My project idea is an interactive piece where the user has to actually face the project and interact with it making it, in a sense, a personal and intimate relationship. I want to create a project where I sew a push button into a glove and use the arduino to program into processing the codes that will display how many times I have been in contact with people throughout the day. Everyone time someone shakes hands with the user, the button is pushed which will start to count how many have come into contact with the user. I want to document myselfseveral different people to see the trends, including how they communicate with each other. (shake, high five, fist bump, etc...) ===Code===import processing.serial.*;Serial port;int value;PFont font;int buttonValue = 0;int prevButtonValue = 0;  void setup(){ size(300,500); //String portName = Serial.list()[0]; println(Serial.list()); port = new Serial(this, who is normally a social beingSerial.list()[0], with the completed project and compare that to friends9600); font = loadFont("BerlinSansFBDemi-Bold-250.vlw"); textAlign(CENTER); textFont(font);} void draw(){ background(153); fill(0, 102, 153); rect(30,height,240,-value); text(value,width/2, who are introverted and not really socialheight-value-20 ); drawGraph(); prevButtonValue = buttonValue; to prove a point} void drawGraph(){ if (port.available() > 0) { value = port.read(); } if (value == 1){ value = buttonValue; buttonValue++;}} ===Visual===
82
edits