<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/1.5.1-alpha" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
	<title>Life@ITP</title>
	<link>http://words.blogsome.com</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Sat, 17 Dec 2005 03:56:50 +0000</pubDate>
	<generator>http://wordpress.org/?v=1.5.1-alpha</generator>
	<language>en</language>

		<item>
		<title>MIDI Lab</title>
		<link>http://words.blogsome.com/2005/12/17/midi-lab/</link>
		<comments>http://words.blogsome.com/2005/12/17/midi-lab/#comments</comments>
		<pubDate>Sat, 17 Dec 2005 01:25:11 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>Physical Computing</category>
		<guid>http://words.blogsome.com/2005/12/17/midi-lab/</guid>
		<description><![CDATA[	MIDI or Musical Instrument Digital Interface is a protocol developed for communication between digital synthesizers and other digital music devices.
	For this lab I used a sythesizer which was connected to my microcontroller. The program takes a value from an analog sensor and uses it ro generate the pitch of a note played once every quarter [...]]]></description>
			<content:encoded><![CDATA[	<p>MIDI or Musical Instrument Digital Interface is a protocol developed for communication between digital synthesizers and other digital music devices.</p>
	<p>For this lab I used a sythesizer which was connected to my microcontroller. The program takes a value from an analog sensor and uses it ro generate the pitch of a note played once every quarter of a second.</p>
	<p>&#8216; the sensor is on pin RA0 The MIDI is on pin RC6<br />
&#8216; Make sure to select Configuration, Oscillator, HS<br />
&#8216; in EPICWIN when programming:<br />
DEFINE OSC 20<br />
DEFINE ADC_BIT 10<br />
DEFINE ADC_CLOCK 3<br />
DEFINE ADC_SAMPLEUS 15</p>
	<p>&#8216; set up serial UART registers:<br />
define HSER_RCSTA 90h<br />
define HSER_TXSTA 20h<br />
define HSER_BAUD 31250</p>
	<p>TRISA = %11111111<br />
&#8216; set up ADCON1<br />
ADCON1 = %10000010</p>
	<p>&#8216; declare an array of 12 word variables:<br />
pitch var byte (12)</p>
	<p>&#8216; declare other variables:<br />
note var byte<br />
ADCVar var word</p>
	<p>&#8216; the 12 elements of the array called pitch are the 12 notes of a scale:<br />
pitch (0) = 60 &#8216; middle C<br />
pitch (1) = 61 &#8216; C#<br />
pitch (2) = 62 &#8216; D<br />
pitch (3) = 63 &#8216; D#<br />
pitch (4) = 64 &#8216; E<br />
pitch (5) = 65 &#8216; F<br />
pitch (6) = 66 &#8216; F#<br />
pitch (7) = 67 &#8216; G<br />
pitch (8) = 68 &#8216; G#<br />
pitch (9) = 69 &#8216; A<br />
pitch (10) = 70 &#8216; A#<br />
pitch (11) = 71 &#8216; B</p>
	<p>main:<br />
&#8216;My potentiometer gave a range from 0 to 1023<br />
ADCin 0. ADCVar<br />
&#8216; connect to a range from 0 to 11:<br />
Note = ADCVAR / 100<br />
&#8216; play note:<br />
hserout [$90. pitch(note), $40]<br />
pause 250<br />
&#8216; noteoff:<br />
hserout [$80, pitch(note), $00]<br />
goto main
</p>
]]></content:encoded>
			<wfw:commentRss>http://words.blogsome.com/2005/12/17/midi-lab/feed/</wfw:commentRss>
	</item>
		<item>
		<title>Week 6 Lab</title>
		<link>http://words.blogsome.com/2005/12/17/week-6-lab/</link>
		<comments>http://words.blogsome.com/2005/12/17/week-6-lab/#comments</comments>
		<pubDate>Sat, 17 Dec 2005 00:45:22 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>Physical Computing</category>
		<guid>http://words.blogsome.com/2005/12/17/week-6-lab/</guid>
		<description><![CDATA[	I finally had a chance to work on my week 6 lab assignment. I couldn&#8217;t get my hands on a H-bridge so I did the next best thing&#8230;use a TIP120 which only allowed me to vary the speed of the motor by receiving pause intervals. After finals I was basically broke so I got the [...]]]></description>
			<content:encoded><![CDATA[	<p>I finally had a chance to work on my week 6 lab assignment. I couldn&#8217;t get my hands on a H-bridge so I did the next best thing&#8230;use a TIP120 which only allowed me to vary the speed of the motor by receiving pause intervals. After finals I was basically broke so I got the cheapest DC motor I could find at Radio Shack, a 1.5 - 3v DC hobby motor.</p>
	<p>I got the DC motor to do what it&#8217;s supposed to do, which is to spin. The ER room was out of still camera&#8217;s so I didn&#8217;t have a chance to take any photos but below is the code I used to program my PIC chip.</p>
	<p>&#8216;define oscillator @ 4mhz<br />
DEFINE OSC 4</p>
	<p>&#8216; make ports D1 output</p>
	<p>output PORTD.1</p>
	<p>pause 500 &#8216; start program with a half-second delay</p>
	<p>main:</p>
	<p>high PORTD.1</p>
	<p>pause 1000 &#8216; turns motor power on for 1 second</p>
	<p>low PORTD.1</p>
	<p>pause 1000 &#8216; turns power off for 1 second</p>
	<p>goto main</p>
]]></content:encoded>
			<wfw:commentRss>http://words.blogsome.com/2005/12/17/week-6-lab/feed/</wfw:commentRss>
	</item>
		<item>
		<title>Ping Pong Remix Wireless Presentation</title>
		<link>http://words.blogsome.com/2005/12/15/ping-pong-remix-wireless-presentation/</link>
		<comments>http://words.blogsome.com/2005/12/15/ping-pong-remix-wireless-presentation/#comments</comments>
		<pubDate>Thu, 15 Dec 2005 20:50:05 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>Physical Computing</category>
		<guid>http://words.blogsome.com/2005/12/15/ping-pong-remix-wireless-presentation/</guid>
		<description><![CDATA[	Everything&#8217;s done and completed&#8230;Steve did this incredible paddle sound selector on Processing and we&#8217;re all set!
	PowerPoint Presentation

]]></description>
			<content:encoded><![CDATA[	<p>Everything&#8217;s done and completed&#8230;Steve did this incredible paddle sound selector on Processing and we&#8217;re all set!</p>
	<p><center><a href="http://itp.nyu.edu/~fk391/pingpong.ppt"><b>PowerPoint Presentation</b></a></center>
</p>
]]></content:encoded>
			<wfw:commentRss>http://words.blogsome.com/2005/12/15/ping-pong-remix-wireless-presentation/feed/</wfw:commentRss>
	</item>
		<item>
		<title>Re-Paddling</title>
		<link>http://words.blogsome.com/2005/12/15/re-paddling/</link>
		<comments>http://words.blogsome.com/2005/12/15/re-paddling/#comments</comments>
		<pubDate>Thu, 15 Dec 2005 04:15:33 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>Physical Computing</category>
		<guid>http://words.blogsome.com/2005/12/15/re-paddling/</guid>
		<description><![CDATA[	We decided it was best to redo the paddles all together, so we both went to Paragon at Union Square and bought 5 dollar paddles to break apart and Piezo buzzers at Radio Shack. The Rubber on the paddles were stripped open as well as the wood on the handles.
	The Peizo buzzers were soldered, red [...]]]></description>
			<content:encoded><![CDATA[	<p>We decided it was best to redo the paddles all together, so we both went to Paragon at Union Square and bought 5 dollar paddles to break apart and Piezo buzzers at Radio Shack. The Rubber on the paddles were stripped open as well as the wood on the handles.</p>
	<p>The Peizo buzzers were soldered, red is to power, blue is to analog and black is to ground. Then a hole was cut in the middle of the handles as shown in the pictures in order to place the wires that go from the peizo buzzer to the transmitter boards.</p>
	<p>After making the hole, the Piezo Buzzer is placed under the rubber ever so carefully as the wires of the Piezo buzzers are very very sensitive and glued with the gorrila glue. The new buzzered paddles are clamped down and left to dry overnight.</p>
	<p>The reciever box was re-designed to be more accessible and to look more prefessional and the transcievers are now placed in a little pouch.</p>
	<p>I have to say I was glad we redid the paddles because it gave me a chance to see how the paddles actually worked and what was really used to get data from the paddles to the pic chip. Speaking of pic chips, the pic chips for the transmitter boards were changed from the larger 18F452 to the smaller 18F252 which has 28 pins. It was best to use a smaller Pic chips since we were using a smaller breadboard and we needed more space on the board to fit everything together.</p>
	<p>Below are few pictures of our preparations:</p>
	<p><center><a href="http://www.flickr.com/photos/33893057@N00/73701882/" title="Photo Sharing"><img src="http://static.flickr.com/35/73701882_ccba3c0a8b_m.jpg" width="240" height="180" alt="IMG_4434" /></a></p>
	<p><a href="http://www.flickr.com/photos/33893057@N00/73701883/" title="Photo Sharing"><img src="http://static.flickr.com/35/73701883_e147dcfd6e_m.jpg" width="240" height="180" alt="IMG_4435" /></a></p>
	<p><a href="http://www.flickr.com/photos/33893057@N00/73700091/" title="Photo Sharing"><img src="http://static.flickr.com/34/73700091_3b745efda0_m.jpg" width="240" height="180" alt="IMG_4433" /></a></p>
	<p><a href="http://www.flickr.com/photos/33893057@N00/73700090/" title="Photo Sharing"><img src="http://static.flickr.com/34/73700090_d7276545ce_m.jpg" width="240" height="180" alt="P1010033" /></a></p>
	<p><a href="http://www.flickr.com/photos/33893057@N00/73700089/" title="Photo Sharing"><img src="http://static.flickr.com/34/73700089_614607739d_m.jpg" width="240" height="180" alt="P1010031" /></a></p>
	<p><a href="http://www.flickr.com/photos/33893057@N00/73700088/" title="Photo Sharing"><img src="http://static.flickr.com/34/73700088_44bd553890_m.jpg" width="240" height="180" alt="P1010030" /></a></p>
	<p><a href="http://www.flickr.com/photos/33893057@N00/73700087/" title="Photo Sharing"><img src="http://static.flickr.com/20/73700087_1fb4bc3c92_m.jpg" width="240" height="180" alt="P1010028" /></a></p>
	<p><a href="http://www.flickr.com/photos/33893057@N00/73700085/" title="Photo Sharing"><img src="http://static.flickr.com/34/73700085_07650b1bb5_m.jpg" width="240" height="180" alt="P1010027" /></a></p>
	<p><a href="http://www.flickr.com/photos/33893057@N00/73695926/" title="Photo Sharing"><img src="http://static.flickr.com/35/73695926_515c17b8c1_m.jpg" width="240" height="180" alt="P1010012" /></a></p>
	<p><a href="http://www.flickr.com/photos/33893057@N00/73695927/" title="Photo Sharing"><img src="http://static.flickr.com/34/73695927_782143d190_m.jpg" width="240" height="180" alt="P1010014" /></a></p>
	<p><a href="http://www.flickr.com/photos/33893057@N00/73695928/" title="Photo Sharing"><img src="http://static.flickr.com/35/73695928_cf2ffbf7b5_m.jpg" width="240" height="180" alt="P1010018" /></a></p>
	<p><a href="http://www.flickr.com/photos/33893057@N00/73695929/" title="Photo Sharing"><img src="http://static.flickr.com/35/73695929_729e4e726c_m.jpg" width="240" height="180" alt="P1010021" /></a></p>
	<p><a href="http://www.flickr.com/photos/33893057@N00/73695930/" title="Photo Sharing"><img src="http://static.flickr.com/34/73695930_3a85785d50_m.jpg" width="240" height="180" alt="P1010022" /></a></p>
	<p><a href="http://www.flickr.com/photos/33893057@N00/73695931/" title="Photo Sharing"><img src="http://static.flickr.com/20/73695931_f4e27aa3e5_m.jpg" width="240" height="180" alt="P1010023" /></a></center></p>
	<p><center><a href="http://itp.nyu.edu/~fk391/pingpongremix.swf"><b>A flash representation of how the paddles work</b></a></center>
</p>
]]></content:encoded>
			<wfw:commentRss>http://words.blogsome.com/2005/12/15/re-paddling/feed/</wfw:commentRss>
	</item>
		<item>
		<title>ReDesigned Cutting board</title>
		<link>http://words.blogsome.com/2005/12/13/redesigned-cutting-board/</link>
		<comments>http://words.blogsome.com/2005/12/13/redesigned-cutting-board/#comments</comments>
		<pubDate>Tue, 13 Dec 2005 03:30:40 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>Communications Lab</category>
		<guid>http://words.blogsome.com/2005/12/13/redesigned-cutting-board/</guid>
		<description><![CDATA[	Well my product is EXTREMELY simple and I&#8217;m not sure how much of a technology it is, since there are no wires or light or anything of that sort. It&#8217;s just a plain cutting board.
	The main reason I decided to redesin a cutting board is because my mom is here for a visit and we [...]]]></description>
			<content:encoded><![CDATA[	<p>Well my product is EXTREMELY simple and I&#8217;m not sure how much of a technology it is, since there are no wires or light or anything of that sort. It&#8217;s just a plain cutting board.</p>
	<p>The main reason I decided to redesin a cutting board is because my mom is here for a visit and we have been cooking so much and I have been using the cutting board alot these past weeks. Anyways below is my design.</p>
	<p><center><a href=http://itp.nyu.edu/~fk391/CommLab/cuttingboard.gif><img src="http://itp.nyu.edu/~fk391/CommLab/cuttingboard.gif" width="350"/></a></center>
</p>
]]></content:encoded>
			<wfw:commentRss>http://words.blogsome.com/2005/12/13/redesigned-cutting-board/feed/</wfw:commentRss>
	</item>
		<item>
		<title>Ping Pong - The Remix</title>
		<link>http://words.blogsome.com/2005/12/08/ping-pong-the-remix-3/</link>
		<comments>http://words.blogsome.com/2005/12/08/ping-pong-the-remix-3/#comments</comments>
		<pubDate>Thu, 08 Dec 2005 18:25:38 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>Physical Computing</category>
		<guid>http://words.blogsome.com/2005/12/08/ping-pong-the-remix-3/</guid>
		<description><![CDATA[	
	We finally got the Paddle to work wirelessly, and we have figured out how we will be strapping the paddles. What we have decided so far is to mount the breadboard and having these velcro straps wrap around them We hope to get everything done by this weekend so we will be able to do [...]]]></description>
			<content:encoded><![CDATA[	<p><center><img src="http://static.flickr.com/34/71534154_923b1ba9f4.jpg" width="353" height="300" alt="logopingpong" /></center></p>
	<p>We finally got the Paddle to work wirelessly, and we have figured out how we will be strapping the paddles. What we have decided so far is to mount the breadboard and having these velcro straps wrap around them We hope to get everything done by this weekend so we will be able to do some userbility testing and be able to video tape the users in action! Below is the code we did.</p>
	<p>&#8216;****************************************************************<br />
&#8216;*  Name    : PP-PADDLE<br />
&#8216;*  Author  : Steven Jackson / Fazreen Kuhiri<br />
&#8216;*  Notice  : Copyright (c) 2005<br />
&#8216;*          : All Rights Reserved<br />
&#8216;*  Date    : 12/1/2005<br />
&#8216;*  Version : 1.0<br />
&#8216;*  Notes   : sending serial out (transmitter) from paddle<br />
&#8216;****************************************************************</p>
	<p>define osc 4</p>
	<p>&#8216; Define ADCIN parameters<br />
DEFINE ADC_BITS 10      &#8216; Set number of bits in result<br />
DEFINE ADC_CLOCK 3      &#8216; Set clock source (3=rc)<br />
DEFINE ADC_SAMPLEUS 20  &#8216; Set sampling time in uS</p>
	<p>PeakValue       var     word<br />
SensorValue     var     word<br />
LastSensorValue var     word<br />
Threshold       var     word<br />
Noise           var     word</p>
	<p>Threshold   = 50  &#8216; set your own value based on your sensors<br />
PeakValue   = 0   &#8216; initialize peakValue<br />
noise       = 5   &#8216; set a noise value based on your particular sensor</p>
	<p>&#8216; Set PORTA to all input<br />
TRISA   = %11111111</p>
	<p>&#8216; Set up ADCON1<br />
ADCON1  = %10000010</p>
	<p>inv2400     con     16780</p>
	<p>thisByte    var     byte<br />
adcVar      var     word<br />
blink       var     byte</p>
	<p>output      portd.1<br />
output      portd.2<br />
OUTPUt      portd.3<br />
input       portb.0</p>
	<p>i           var     byte</p>
	<p>pause 500</p>
	<p>main:<br />
    &#8216; read sensor on pin RA0:<br />
    ADCin 3, sensorValue</p>
	<p>    &#8216; check to see that it&#8217;s above the threshold:<br />
    If sensorValue >= threshold + noise then</p>
	<p>        &#8216; if it&#8217;s greater than the last reading,<br />
        &#8216; then make it our current peak:<br />
        If sensorValue >= lastSensorValue + Noise then<br />
            PeakValue = sensorValue<br />
        endif</p>
	<p>        &#8216; if the sensorValue is not above the threshold,<br />
        &#8216; then the last peak value we got would be the actual peak:<br />
    Else<br />
        If peakValue >= threshold then</p>
	<p>            &#8216; this is the final peak value; take action<br />
            thisByte = 1</p>
	<p>            for i = 0 to 5 step 1<br />
                serout2 portd.3, inv2400, [65, dec thisbyte]<br />
            next i<br />
            &#8217;serout2 portd.3, inv2400, [83, DEC thisByte, 10]</p>
	<p>            high portd.1<br />
            pause 200<br />
            low portd.1<br />
            pause 200<br />
        endif</p>
	<p>        &#8216; reset peakValue, since we&#8217;ve finished with this peak:<br />
        peakValue = 0<br />
    Endif</p>
	<p>    &#8216; store the current sensor value for the next loop:<br />
    lastSensorValue = sensorValue</p>
	<p>goto main</p>
	<p><center><b>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</b></center></p>
	<p>&#8216;****************************************************************<br />
&#8216;*  Name    : PP-RECEIVER_BOX<br />
&#8216;*  Author  : Steven Jackson / Fazreen Kuhiri<br />
&#8216;*  Notice  : Copyright (c) 2005<br />
&#8216;*          : All Rights Reserved<br />
&#8216;*  Date    : 12/1/2005<br />
&#8216;*  Version : 1.0<br />
&#8216;*  Notes   : sending serial out (transmitter) from paddle<br />
&#8216;*<br />
&#8216;****************************************************************<br />
inbyte      var     byte  &#8216; incoming string<br />
inbyte2     VAR     BYTE</p>
	<p>output      portb.1     &#8216; status LED<br />
output      portc.6     &#8216; serial out to PC<br />
input       portc.7     &#8216; serial in from receiver</p>
	<p>n_2400      con     16780    &#8216; baud mode for serin2 (2400-8-N-1 inverted)<br />
n_9600      con     16468    &#8216; baud mode for serin2 (9600-8-N-1 inverted)</p>
	<p>i           var     byte          &#8216; loop counter</p>
	<p>RFSerialIn  var     portc.7<br />
PCSerialOut VAR     portc.6<br />
StatusLED   var     portb.1<br />
PingPong    VAR     WORD<br />
PingPong    =       420</p>
	<p>&#8216; flash status LED to start:<br />
high StatusLED<br />
pause 500<br />
low StatusLED</p>
	<p>main:<br />
    &#8216; this serial call does nothing until it gets bytes:<br />
    serin2 RFserialIn, n_2400, [wait(65), inbyte]<br />
    serout2 pcserialout, n_9600, [inbyte]<br />
goto main</p>
]]></content:encoded>
			<wfw:commentRss>http://words.blogsome.com/2005/12/08/ping-pong-the-remix-3/feed/</wfw:commentRss>
	</item>
		<item>
		<title>Robbie&#8217;s Heartbreak</title>
		<link>http://words.blogsome.com/2005/12/06/32/</link>
		<comments>http://words.blogsome.com/2005/12/06/32/#comments</comments>
		<pubDate>Tue, 06 Dec 2005 03:17:39 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>Communications Lab</category>
		<guid>http://words.blogsome.com/2005/12/06/32/</guid>
		<description><![CDATA[	Since I have some Flash Experiance and mostly because I didn&#8217;t have time to work in group for this assignment, because of Red&#8217;s Presentation and Finals. I decided it was best if I did this on my own. As I said earlier I do have some flash experiance, but mostly it&#8217;s self taught and learning [...]]]></description>
			<content:encoded><![CDATA[	<p>Since I have some Flash Experiance and mostly because I didn&#8217;t have time to work in group for this assignment, because of Red&#8217;s Presentation and Finals. I decided it was best if I did this on my own. As I said earlier I do have some flash experiance, but mostly it&#8217;s self taught and learning by trial and error. Flash is definitely one of my favorite softwares to work with just because you can do alot with it. I still have a long ways to go to get better at Flash, but I love using it and learning more and more everytime I work with it.</p>
	<p>I have not had time to really finish this animation, but I will and the file will be here.</p>
	<p><center><object CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" WIDTH="390" HEIGHT="300" CODEBASE="http://active.macromedia.com/flash5/cabs/swflash.cab#version=5,0,0,0"></p>
	<param NAME="MOVIE" VALUE="http://itp.nyu.edu/~fk391/CommLab/robbieMX.swf">
<object width="550" height="400"></p>
	<param name="movie" value="http://itp.nyu.edu/~fk391/CommLab/robbieMX.swf">
<embed src="somefilename.swf" width="550" height="400"><br />
</embed><br />
</param></object><br />
</param></object></center></p>
]]></content:encoded>
			<wfw:commentRss>http://words.blogsome.com/2005/12/06/32/feed/</wfw:commentRss>
	</item>
		<item>
		<title>Ping Pong - The Remix</title>
		<link>http://words.blogsome.com/2005/12/01/ping-pong-the-remix-2/</link>
		<comments>http://words.blogsome.com/2005/12/01/ping-pong-the-remix-2/#comments</comments>
		<pubDate>Thu, 01 Dec 2005 23:20:58 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>Physical Computing</category>
		<guid>http://words.blogsome.com/2005/12/01/ping-pong-the-remix-2/</guid>
		<description><![CDATA[	
	
	
	
	
	We&#8217;ve decided to make the signal digital rather than  analog because there was too much data being sent through, so it was much easier to have it digital.
	We also have a back up plan&#8230;.IN CASE the WHOLE WIRELESS thing doesn&#8217;t work out, and it&#8217;s to combine everything in one big box. Since we are [...]]]></description>
			<content:encoded><![CDATA[	<p><center><a href="http://www.flickr.com/photos/33893057@N00/69170626/" title="Photo Sharing"><img src="http://static.flickr.com/34/69170626_147f614bd7_m.jpg" width="190" height="240" alt="wireless" /></a></p>
	<p><a href="http://www.flickr.com/photos/33893057@N00/69166334/" title="Photo Sharing"><img src="http://static.flickr.com/6/69166334_7317653c43_m.jpg" width="240" height="180" alt="_MG_4048" /></a></p>
	<p><a href="http://www.flickr.com/photos/33893057@N00/69166335/" title="Photo Sharing"><img src="http://static.flickr.com/18/69166335_b0762a2fef_m.jpg" width="240" height="180" alt="_MG_4049" /></a></p>
	<p><a href="http://www.flickr.com/photos/33893057@N00/69166336/" title="Photo Sharing"><img src="http://static.flickr.com/12/69166336_9d98d4dbfa_m.jpg" width="240" height="180" alt="_MG_4050" /></a></p>
	<p><a href="http://www.flickr.com/photos/33893057@N00/69166338/" title="Photo Sharing"><img src="http://static.flickr.com/15/69166338_7a4244e43b_m.jpg" width="240" height="180" alt="_MG_4052" /></a></center></p>
	<p>We&#8217;ve decided to make the signal digital rather than  analog because there was too much data being sent through, so it was much easier to have it digital.</p>
	<p>We also have a back up plan&#8230;.IN CASE the WHOLE WIRELESS thing doesn&#8217;t work out, and it&#8217;s to combine everything in one big box. Since we are still getting some signal difficulties.</p>
	<p><center><a href="http://www.flickr.com/photos/33893057@N00/69172017/" title="Photo Sharing"><img src="http://static.flickr.com/12/69172017_cb40379611_m.jpg" width="183" height="240" alt="bigbox" /></a></center>
</p>
]]></content:encoded>
			<wfw:commentRss>http://words.blogsome.com/2005/12/01/ping-pong-the-remix-2/feed/</wfw:commentRss>
	</item>
		<item>
		<title>1 minute animation</title>
		<link>http://words.blogsome.com/2005/11/30/1-minute-animation/</link>
		<comments>http://words.blogsome.com/2005/11/30/1-minute-animation/#comments</comments>
		<pubDate>Wed, 30 Nov 2005 15:57:33 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>Communications Lab</category>
		<guid>http://words.blogsome.com/2005/11/30/1-minute-animation/</guid>
		<description><![CDATA[	
Page 1
	
Page 2
	
Page 3
	
Page 4


]]></description>
			<content:encoded><![CDATA[	<p><center><a href="http://itp.nyu.edu/~fk391/CommLab/page1.jpg"><img src="http://static.flickr.com/6/68678655_b0bbfaac5c_m.jpg" width="174" height="240" alt="1page" /></a><br />
<b>Page 1</p>
	<p><a href="http://itp.nyu.edu/~fk391/CommLab/page2.jpg"><img src="http://static.flickr.com/12/68678656_9cf1568e56_m.jpg" width="174" height="240" alt="2page" /></a><br />
Page 2</p>
	<p><a href="http://itp.nyu.edu/~fk391/CommLab/page3.jpg"><img src="http://static.flickr.com/6/68679156_5c27957d09_m.jpg" width="174" height="240" alt="3page" /></a><br />
Page 3</p>
	<p><a href="http://itp.nyu.edu/~fk391/CommLab/page4.jpg"><img src="http://static.flickr.com/6/68679157_6c15d1592c_m.jpg" width="174" height="240" alt="4page" /></a><br />
Page 4<br />
</b></center>
</p>
]]></content:encoded>
			<wfw:commentRss>http://words.blogsome.com/2005/11/30/1-minute-animation/feed/</wfw:commentRss>
	</item>
		<item>
		<title>ICM Proposal</title>
		<link>http://words.blogsome.com/2005/11/28/icm-proposal-2/</link>
		<comments>http://words.blogsome.com/2005/11/28/icm-proposal-2/#comments</comments>
		<pubDate>Mon, 28 Nov 2005 13:46:44 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>ICM</category>
		<guid>http://words.blogsome.com/2005/11/28/icm-proposal-2/</guid>
		<description><![CDATA[	Description
	A bunch of bezier that moves in a very beautiful and tranquil way, with sound. Sort of like an audio visualization.
	Breakdown of what I need
	         Bezeir class
	Point class
	Movement class
	music
	What I already have
	Some music
Time line to accomplish 
	November 28 
	Find more sounds and start to program the bezeir [...]]]></description>
			<content:encoded><![CDATA[	<p><b><font color="#f26d7d">Description</font></b></p>
	<p>A bunch of bezier that moves in a very beautiful and tranquil way, with sound. Sort of like an audio visualization.</p>
	<p><b><font color="#f26d7d">Breakdown of what I need</font></b></p>
	<p>         Bezeir class<br />
	Point class<br />
	Movement class<br />
	music</p>
	<p><b><font color="#f26d7d">What I already have</font></b></p>
	<p>Some music<br />
Time line to accomplish </p>
	<p><b><font color="#f26d7d">November 28</font></b> </p>
	<p>Find more sounds and start to program the bezeir movement.</p>
	<p><b><font color="#f26d7d">December 5</font></b></p>
	<p> Finish program<br />
 Final presentation on Dec.12<br />
 Refine program<br />
 Final adjustment</p>
	<p><b><font color="#f26d7d">May want to try</font></b> </p>
	<p> Getting it to work with the sound when certain keys are pressed.</p>
]]></content:encoded>
			<wfw:commentRss>http://words.blogsome.com/2005/11/28/icm-proposal-2/feed/</wfw:commentRss>
	</item>
	</channel>
</rss>
