<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.roberttwomey.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Uyen+Nguyen</id>
		<title>Robert-Depot - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.roberttwomey.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Uyen+Nguyen"/>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/Special:Contributions/Uyen_Nguyen"/>
		<updated>2026-06-09T14:24:45Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.27.1</generator>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=3054</id>
		<title>Students/Uyen Nguyen</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=3054"/>
				<updated>2010-03-18T23:17:51Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello,&lt;br /&gt;
I&amp;#039;m Uyen, ICAM major. I&amp;#039;m taking this class as a requirement for my major. What lead me to ICAM was my interest in both computer science and graphic design. As I am going through this major, I have found many interesting things about art and technology, and also the way they connect together in almost every thing in our life today.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Final Project&lt;br /&gt;
&lt;br /&gt;
My final project is actually different from what I proposed couple weeks ago. It is a colorful light box. I used Arduino to control the duration time bliking, and the order of blinking on each LED light bulb. The Arduino also connects to a photoresistor sensor to control the brightness and the blinking time delay of the whole LED’s set up. &lt;br /&gt;
&lt;br /&gt;
The concept of this piece is more about artistic display of night flowers, especially epiphyllous, a kind of flowers that bloom for a single night only. The piece itself explores the ideas about day, night, light, flowers, and beauty through electronic. It is the combination between nature and technology. &lt;br /&gt;
&lt;br /&gt;
Through the photoresistor sensor, when the light outside is dark, the light on each flower will be bright and blinking in sequence. The background light is also changing. However, when the light from outside is bright, like daytime, the flower lights will stop blinking and the brightness of the flowers lights does down. &lt;br /&gt;
&lt;br /&gt;
Unfortunately, today as the day I will present my project, my freeduino board got burnt and stopped working in the morning. I can no longer use Arduino for my project. For now, I just put the whole set up with LEDs without interacting with the sensor or blinking lightshow. I still post the Arduino code that I had put together the past couple days, so you can understand what I intend to do, and how the project actually worked before the board was damaged. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
int timer = 100;           &lt;br /&gt;
&lt;br /&gt;
void setup() {&lt;br /&gt;
    Serial.begin(9600);&lt;br /&gt;
  for (int thisPin = 2; thisPin &amp;lt; 9; thisPin++)  {&lt;br /&gt;
    pinMode(thisPin, OUTPUT);      &lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
void loop() {&lt;br /&gt;
&lt;br /&gt;
  int sensorReading = analogRead(2);&lt;br /&gt;
  // print the sensor reading so you know its range&lt;br /&gt;
  Serial.println(sensorReading);&lt;br /&gt;
&lt;br /&gt;
  int thisRange = map(sensorReading, 1, 50000, 1, 50000);&lt;br /&gt;
  // loop from the lowest pin to the highest:&lt;br /&gt;
        byte brightness = thisRange;&lt;br /&gt;
        &lt;br /&gt;
  for (int thisPin = 2; thisPin &amp;lt; 9; thisPin++) { &lt;br /&gt;
    &lt;br /&gt;
       analogWrite(thisPin, brightness);&lt;br /&gt;
       &lt;br /&gt;
  }&lt;br /&gt;
    &lt;br /&gt;
  for (int thisPin = 2; thisPin &amp;lt; 9; thisPin++) { &lt;br /&gt;
&lt;br /&gt;
    // turn the pin on:&lt;br /&gt;
    digitalWrite(thisPin, HIGH);   &lt;br /&gt;
    delay(thisRange*3);                  &lt;br /&gt;
    // turn the pin off:&lt;br /&gt;
    digitalWrite(thisPin, LOW);  &lt;br /&gt;
    analogWrite(thisPin, brightness);  &lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  // loop from the highest pin to the lowest:&lt;br /&gt;
  for (int thisPin = 9; thisPin &amp;gt;= 2; thisPin--) { &lt;br /&gt;
    // turn the pin on:&lt;br /&gt;
    digitalWrite(thisPin, HIGH);&lt;br /&gt;
    delay(thisRange*3);&lt;br /&gt;
    // turn the pin off:&lt;br /&gt;
    digitalWrite(thisPin, LOW);&lt;br /&gt;
    analogWrite(thisPin, brightness);&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1.&lt;br /&gt;
[[Image:Final1.jpg|400px|thumb|center| ]]&lt;br /&gt;
&lt;br /&gt;
2.&lt;br /&gt;
[[Image:Final2.jpg|400px|thumb|center| ]]&lt;br /&gt;
&lt;br /&gt;
3.&lt;br /&gt;
[[Image:Final3.jpg|400px|thumb|center| ]]&lt;br /&gt;
&lt;br /&gt;
4.&lt;br /&gt;
[[Image:Final4.jpg|400px|thumb|center| ]]&lt;br /&gt;
&lt;br /&gt;
5.&lt;br /&gt;
[[Image:Final6.jpg|400px|thumb|center| ]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Midterm Project&lt;br /&gt;
&lt;br /&gt;
For the midterm project, I made a light box. The idea about this light box is using light as an element to emphasize on the sense of city light. Collaborating this idea with the switch, I want to make a light box that when it turns on, it will brighten up a transparency city landscape picture. The switch is actually the top part of the box, so when the box open, the whole circuit is closed and light turn on, when the box close then the circuit open and the light turn of.&lt;br /&gt;
 &lt;br /&gt;
About the concept, since this project is about switch, I was thinking about what a switch usually related to. Usually, the concept about switch goes together with technology and electronic. The place where people can think the most about electric and technology are cities. When the sun goes down, and night comes, every one turns the switches to turn on their lights. A typical feeling about city life is a place where the light never goes off, and it can be seen clearly especially at night.  &lt;br /&gt;
Working on the project, my original idea was to create multiple little building models by paper and but the little light bulbs inside each of them to create a little city. However, I did not have enough those little light bulbs, so I decided to create a very contrast city image in black and white and print them on a transparency paper, then put the light under the image as the background to light up and show the image clearly. The materials that I used were mostly paper, circuit board, two light bulbs, and electric wire. &lt;br /&gt;
It was a very simple switch project, but I think it was very interesting to work on it. After this project, I will probably display it in my room as a decoration light. To improve this project, I think I would make it again by using better material because paper is not a very reliable material to work with light heat and electricity. It could get burn easily if I am not careful. Also, the image can be replaced and print on better material. After all, after this project, I would love to work on it more and create more interesting features for this light box. &lt;br /&gt;
&lt;br /&gt;
[[Image:Diagram.JPG|200px|thumb|left|Diagram]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Before2.JPG|200px|thumb|left|Before turn on]]&lt;br /&gt;
&lt;br /&gt;
[[Image:After.JPG|200px|thumb|left|After turned on by opening the box]]&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=File:Final3.jpg&amp;diff=3051</id>
		<title>File:Final3.jpg</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=File:Final3.jpg&amp;diff=3051"/>
				<updated>2010-03-18T23:05:43Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=3050</id>
		<title>Students/Uyen Nguyen</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=3050"/>
				<updated>2010-03-18T23:01:59Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello,&lt;br /&gt;
I&amp;#039;m Uyen, ICAM major. I&amp;#039;m taking this class as a requirement for my major. What lead me to ICAM was my interest in both computer science and graphic design. As I am going through this major, I have found many interesting things about art and technology, and also the way they connect together in almost every thing in our life today.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Final Project&lt;br /&gt;
&lt;br /&gt;
My final project is actually different from what I proposed couple weeks ago. It is a colorful light box. I used Arduino to control the duration time bliking, and the order of blinking on each LED light bulb. The Arduino also connects to a photoresistor sensor to control the brightness and the blinking time delay of the whole LED’s set up. &lt;br /&gt;
&lt;br /&gt;
The concept of this piece is more about artistic display of night flowers, especially epiphyllous, a kind of flowers that bloom for a single night only. The piece itself explores the ideas about day, night, light, flowers, and beauty through electronic. It is the combination between nature and technology. &lt;br /&gt;
&lt;br /&gt;
Through the photoresistor sensor, when the light outside is dark, the light on each flower will be bright and blinking in sequence. The background light is also changing. However, when the light from outside is bright, like daytime, the flower lights will stop blinking and the brightness of the flowers lights does down. &lt;br /&gt;
&lt;br /&gt;
Unfortunately, today as the day I will present my project, my freeduino board got burnt and stopped working in the morning. I can no longer use Arduino for my project. For now, I just put the whole set up with LEDs without interacting with the sensor or blinking lightshow. I still post the Arduino code that I had put together the past couple days, so you can understand what I intend to do, and how the project actually worked before the board was damaged. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1.&lt;br /&gt;
[[Image:Final1.jpg|400px|thumb|center| ]]&lt;br /&gt;
&lt;br /&gt;
2.&lt;br /&gt;
[[Image:Final2.jpg|400px|thumb|center| ]]&lt;br /&gt;
&lt;br /&gt;
3.&lt;br /&gt;
[[Image:Final3.jpg|400px|thumb|center| ]]&lt;br /&gt;
&lt;br /&gt;
4.&lt;br /&gt;
[[Image:Final4.jpg|400px|thumb|center| ]]&lt;br /&gt;
&lt;br /&gt;
5.&lt;br /&gt;
[[Image:Final6.jpg|400px|thumb|center| ]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Midterm Project&lt;br /&gt;
&lt;br /&gt;
For the midterm project, I made a light box. The idea about this light box is using light as an element to emphasize on the sense of city light. Collaborating this idea with the switch, I want to make a light box that when it turns on, it will brighten up a transparency city landscape picture. The switch is actually the top part of the box, so when the box open, the whole circuit is closed and light turn on, when the box close then the circuit open and the light turn of.&lt;br /&gt;
 &lt;br /&gt;
About the concept, since this project is about switch, I was thinking about what a switch usually related to. Usually, the concept about switch goes together with technology and electronic. The place where people can think the most about electric and technology are cities. When the sun goes down, and night comes, every one turns the switches to turn on their lights. A typical feeling about city life is a place where the light never goes off, and it can be seen clearly especially at night.  &lt;br /&gt;
Working on the project, my original idea was to create multiple little building models by paper and but the little light bulbs inside each of them to create a little city. However, I did not have enough those little light bulbs, so I decided to create a very contrast city image in black and white and print them on a transparency paper, then put the light under the image as the background to light up and show the image clearly. The materials that I used were mostly paper, circuit board, two light bulbs, and electric wire. &lt;br /&gt;
It was a very simple switch project, but I think it was very interesting to work on it. After this project, I will probably display it in my room as a decoration light. To improve this project, I think I would make it again by using better material because paper is not a very reliable material to work with light heat and electricity. It could get burn easily if I am not careful. Also, the image can be replaced and print on better material. After all, after this project, I would love to work on it more and create more interesting features for this light box. &lt;br /&gt;
&lt;br /&gt;
[[Image:Diagram.JPG|200px|thumb|left|Diagram]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Before2.JPG|200px|thumb|left|Before turn on]]&lt;br /&gt;
&lt;br /&gt;
[[Image:After.JPG|200px|thumb|left|After turned on by opening the box]]&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=3049</id>
		<title>Students/Uyen Nguyen</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=3049"/>
				<updated>2010-03-18T23:00:38Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello,&lt;br /&gt;
I&amp;#039;m Uyen, ICAM major. I&amp;#039;m taking this class as a requirement for my major. What lead me to ICAM was my interest in both computer science and graphic design. As I am going through this major, I have found many interesting things about art and technology, and also the way they connect together in almost every thing in our life today.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Final Project&lt;br /&gt;
&lt;br /&gt;
My final project is actually different from what I proposed couple weeks ago. It is a colorful light box. I used Arduino to control the duration time bliking, and the order of blinking on each LED light bulb. The Arduino also connects to a photoresistor sensor to control the brightness and the blinking time delay of the whole LED’s set up. &lt;br /&gt;
&lt;br /&gt;
The concept of this piece is more about artistic display of night flowers, especially epiphyllous, a kind of flowers that bloom for a single night only. The piece itself explores the ideas about day, night, light, flowers, and beauty through electronic. It is the combination between nature and technology. &lt;br /&gt;
&lt;br /&gt;
Through the photoresistor sensor, when the light outside is dark, the light on each flower will be bright and blinking in sequence. The background light is also changing. However, when the light from outside is bright, like daytime, the flower lights will stop blinking and the brightness of the flowers lights does down. &lt;br /&gt;
&lt;br /&gt;
Unfortunately, today as the day I will present my project, my freeduino board got burnt and stopped working in the morning. I can no longer use Arduino for my project. For now, I just put the whole set up with LEDs without interacting with the sensor or blinking lightshow. I still post the Arduino code that I had put together the past couple days, so you can understand what I intend to do, and how the project actually worked before the board was damaged. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1.&lt;br /&gt;
[[Image:Final1.jpg|400px|thumb|center| ]]&lt;br /&gt;
&lt;br /&gt;
2.&lt;br /&gt;
[[Image:Final2.jpg|400px|thumb|center| ]]&lt;br /&gt;
&lt;br /&gt;
3.&lt;br /&gt;
[[Image:Final3.jpg|400px|thumb|center| ]]&lt;br /&gt;
&lt;br /&gt;
4.&lt;br /&gt;
[[Image:Final4.jpg|400px|thumb|center| ]]&lt;br /&gt;
&lt;br /&gt;
5.&lt;br /&gt;
[[Image:Final5.jpg|400px|thumb|center| ]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Midterm Project&lt;br /&gt;
&lt;br /&gt;
For the midterm project, I made a light box. The idea about this light box is using light as an element to emphasize on the sense of city light. Collaborating this idea with the switch, I want to make a light box that when it turns on, it will brighten up a transparency city landscape picture. The switch is actually the top part of the box, so when the box open, the whole circuit is closed and light turn on, when the box close then the circuit open and the light turn of.&lt;br /&gt;
 &lt;br /&gt;
About the concept, since this project is about switch, I was thinking about what a switch usually related to. Usually, the concept about switch goes together with technology and electronic. The place where people can think the most about electric and technology are cities. When the sun goes down, and night comes, every one turns the switches to turn on their lights. A typical feeling about city life is a place where the light never goes off, and it can be seen clearly especially at night.  &lt;br /&gt;
Working on the project, my original idea was to create multiple little building models by paper and but the little light bulbs inside each of them to create a little city. However, I did not have enough those little light bulbs, so I decided to create a very contrast city image in black and white and print them on a transparency paper, then put the light under the image as the background to light up and show the image clearly. The materials that I used were mostly paper, circuit board, two light bulbs, and electric wire. &lt;br /&gt;
It was a very simple switch project, but I think it was very interesting to work on it. After this project, I will probably display it in my room as a decoration light. To improve this project, I think I would make it again by using better material because paper is not a very reliable material to work with light heat and electricity. It could get burn easily if I am not careful. Also, the image can be replaced and print on better material. After all, after this project, I would love to work on it more and create more interesting features for this light box. &lt;br /&gt;
&lt;br /&gt;
[[Image:Diagram.JPG|200px|thumb|left|Diagram]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Before2.JPG|200px|thumb|left|Before turn on]]&lt;br /&gt;
&lt;br /&gt;
[[Image:After.JPG|200px|thumb|left|After turned on by opening the box]]&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=3037</id>
		<title>Students/Uyen Nguyen</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=3037"/>
				<updated>2010-03-18T22:52:08Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello,&lt;br /&gt;
I&amp;#039;m Uyen, ICAM major. I&amp;#039;m taking this class as a requirement for my major. What lead me to ICAM was my interest in both computer science and graphic design. As I am going through this major, I have found many interesting things about art and technology, and also the way they connect together in almost every thing in our life today.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Final Project&lt;br /&gt;
&lt;br /&gt;
My final project is actually different from what I proposed couple weeks ago. It is a colorful light box. I used Arduino to control the duration time bliking, and the order of blinking on each LED light bulb. The Arduino also connects to a photoresistor sensor to control the brightness and the blinking time delay of the whole LED’s set up. &lt;br /&gt;
The concept of this piece is more about artistic display of night flowers, especially epiphyllous, a kind of flowers that bloom for a single night only. The piece itself explores the ideas about day, night, light, flowers, and beauty through electronic. It is the combination between nature and technology. &lt;br /&gt;
Through the photoresistor sensor, when the light outside is dark, the light on each flower will be bright and blinking in sequence. The background light is also changing. However, when the light from outside is bright, like daytime, the flower lights will stop blinking and the brightness of the flowers lights does down. &lt;br /&gt;
Unfortunately, today as the day I will present my project, my freeduino board got burnt and stopped working in the morning. I can no longer use Arduino for my project. For now, I just put the whole set up with LEDs without interacting with the sensor or blinking lightshow. I still post the Arduino code that I had put together the past couple days, so you can understand what I intend to do, and how the project actually worked before the board was damaged. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1.&lt;br /&gt;
[[Image:Final1.jpg|550px|thumb|left| ]]&lt;br /&gt;
&lt;br /&gt;
2.&lt;br /&gt;
[[Image:Final2.jpg|550px|thumb|left| ]]&lt;br /&gt;
&lt;br /&gt;
3.&lt;br /&gt;
[[Image:Final3.jpg|550px|thumb|left| ]]&lt;br /&gt;
&lt;br /&gt;
4.&lt;br /&gt;
[[Image:Final4.jpg|550px|thumb|left| ]]&lt;br /&gt;
&lt;br /&gt;
5.&lt;br /&gt;
[[Image:Final5.jpg|550px|thumb|left| ]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Midterm Project&lt;br /&gt;
&lt;br /&gt;
For the midterm project, I made a light box. The idea about this light box is using light as an element to emphasize on the sense of city light. Collaborating this idea with the switch, I want to make a light box that when it turns on, it will brighten up a transparency city landscape picture. The switch is actually the top part of the box, so when the box open, the whole circuit is closed and light turn on, when the box close then the circuit open and the light turn of.&lt;br /&gt;
 &lt;br /&gt;
About the concept, since this project is about switch, I was thinking about what a switch usually related to. Usually, the concept about switch goes together with technology and electronic. The place where people can think the most about electric and technology are cities. When the sun goes down, and night comes, every one turns the switches to turn on their lights. A typical feeling about city life is a place where the light never goes off, and it can be seen clearly especially at night.  &lt;br /&gt;
&lt;br /&gt;
Working on the project, my original idea was to create multiple little building models by paper and but the little light bulbs inside each of them to create a little city. However, I did not have enough those little light bulbs, so I decided to create a very contrast city image in black and white and print them on a transparency paper, then put the light under the image as the background to light up and show the image clearly. The materials that I used were mostly paper, circuit board, two light bulbs, and electric wire. &lt;br /&gt;
&lt;br /&gt;
It was a very simple switch project, but I think it was very interesting to work on it. After this project, I will probably display it in my room as a decoration light. To improve this project, I think I would make it again by using better material because paper is not a very reliable material to work with light heat and electricity. It could get burn easily if I am not careful. Also, the image can be replaced and print on better material. After all, after this project, I would love to work on it more and create more interesting features for this light box. &lt;br /&gt;
&lt;br /&gt;
[[Image:Diagram.JPG|200px|thumb|left|Diagram]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Before2.JPG|200px|thumb|left|Before turn on]]&lt;br /&gt;
&lt;br /&gt;
[[Image:After.JPG|200px|thumb|left|After turned on by opening the box]]&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=File:Final6.jpg&amp;diff=3020</id>
		<title>File:Final6.jpg</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=File:Final6.jpg&amp;diff=3020"/>
				<updated>2010-03-18T22:41:49Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=File:Final4.jpg&amp;diff=3018</id>
		<title>File:Final4.jpg</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=File:Final4.jpg&amp;diff=3018"/>
				<updated>2010-03-18T22:39:10Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=File:Final2.jpg&amp;diff=3017</id>
		<title>File:Final2.jpg</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=File:Final2.jpg&amp;diff=3017"/>
				<updated>2010-03-18T22:33:44Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=File:Final1.jpg&amp;diff=3016</id>
		<title>File:Final1.jpg</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=File:Final1.jpg&amp;diff=3016"/>
				<updated>2010-03-18T22:31:01Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=2860</id>
		<title>Students/Uyen Nguyen</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=2860"/>
				<updated>2010-03-05T09:31:42Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello,&lt;br /&gt;
I&amp;#039;m Uyen, ICAM major. I&amp;#039;m taking this class as a requirement for my major. What lead me to ICAM was my interest in both computer science and graphic design. As I am going through this major, I have found many interesting things about art and technology, and also the way they connect together in almost every thing in our life today.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Final Project&lt;br /&gt;
&lt;br /&gt;
For final project, working with Arduino, I am thinking about making something similar to my midterm project in term of the idea about city light. However, for the final, I will make the actual building models instead of just a picture like what I did in the midterm. By using Arduno, I will connect it to computer and control the light in each building (how bright they will be, the colors, and the speed they will blink.) By using computer, I might create a little light show on these little building models. For each building model, different LED light bulbs will be installed inside. I want to use Processing to control the light movement and they way they will be blinking. &lt;br /&gt;
By using Processing, the project might include two parts, the visual on computer and the physical visualization through the building models. They might interact and response to each other.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1.&lt;br /&gt;
[[Image:64020745_11c9c920c2.jpg‎]]&lt;br /&gt;
&lt;br /&gt;
2.&lt;br /&gt;
[[Image:3378128297_a0a4a3b37c.jpg‎]]&lt;br /&gt;
&lt;br /&gt;
3.&lt;br /&gt;
[[Image:Abc.jpg]]&lt;br /&gt;
&lt;br /&gt;
4.&lt;br /&gt;
[[Image:Las_Vegas_slot_machines_b.jpg‎]]&lt;br /&gt;
&lt;br /&gt;
5.&lt;br /&gt;
[[Image:Ola.jpg‎ ]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Midterm Project&lt;br /&gt;
&lt;br /&gt;
For the midterm project, I made a light box. The idea about this light box is using light as an element to emphasize on the sense of city light. Collaborating this idea with the switch, I want to make a light box that when it turns on, it will brighten up a transparency city landscape picture. The switch is actually the top part of the box, so when the box open, the whole circuit is closed and light turn on, when the box close then the circuit open and the light turn of.&lt;br /&gt;
 &lt;br /&gt;
About the concept, since this project is about switch, I was thinking about what a switch usually related to. Usually, the concept about switch goes together with technology and electronic. The place where people can think the most about electric and technology are cities. When the sun goes down, and night comes, every one turns the switches to turn on their lights. A typical feeling about city life is a place where the light never goes off, and it can be seen clearly especially at night.  &lt;br /&gt;
&lt;br /&gt;
Working on the project, my original idea was to create multiple little building models by paper and but the little light bulbs inside each of them to create a little city. However, I did not have enough those little light bulbs, so I decided to create a very contrast city image in black and white and print them on a transparency paper, then put the light under the image as the background to light up and show the image clearly. The materials that I used were mostly paper, circuit board, two light bulbs, and electric wire. &lt;br /&gt;
&lt;br /&gt;
It was a very simple switch project, but I think it was very interesting to work on it. After this project, I will probably display it in my room as a decoration light. To improve this project, I think I would make it again by using better material because paper is not a very reliable material to work with light heat and electricity. It could get burn easily if I am not careful. Also, the image can be replaced and print on better material. After all, after this project, I would love to work on it more and create more interesting features for this light box. &lt;br /&gt;
&lt;br /&gt;
[[Image:Diagram.JPG|200px|thumb|left|Diagram]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Before2.JPG|200px|thumb|left|Before turn on]]&lt;br /&gt;
&lt;br /&gt;
[[Image:After.JPG|200px|thumb|left|After turned on by opening the box]]&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=2859</id>
		<title>Students/Uyen Nguyen</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=2859"/>
				<updated>2010-03-05T09:30:50Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello,&lt;br /&gt;
I&amp;#039;m Uyen, ICAM major. I&amp;#039;m taking this class as a requirement for my major. What lead me to ICAM was my interest in both computer science and graphic design. As I am going through this major, I have found many interesting things about art and technology, and also the way they connect together in almost every thing in our life today.&lt;br /&gt;
&lt;br /&gt;
1.&lt;br /&gt;
[[Image:64020745_11c9c920c2.jpg‎]]&lt;br /&gt;
&lt;br /&gt;
2.&lt;br /&gt;
[[Image:3378128297_a0a4a3b37c.jpg‎]]&lt;br /&gt;
&lt;br /&gt;
3.&lt;br /&gt;
[[Image:Abc.jpg]]&lt;br /&gt;
&lt;br /&gt;
4.&lt;br /&gt;
[[Image:Las_Vegas_slot_machines_b.jpg‎]]&lt;br /&gt;
&lt;br /&gt;
5.&lt;br /&gt;
[[Image:Ola.jpg‎ ]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Midterm Project&lt;br /&gt;
&lt;br /&gt;
For the midterm project, I made a light box. The idea about this light box is using light as an element to emphasize on the sense of city light. Collaborating this idea with the switch, I want to make a light box that when it turns on, it will brighten up a transparency city landscape picture. The switch is actually the top part of the box, so when the box open, the whole circuit is closed and light turn on, when the box close then the circuit open and the light turn of.&lt;br /&gt;
 &lt;br /&gt;
About the concept, since this project is about switch, I was thinking about what a switch usually related to. Usually, the concept about switch goes together with technology and electronic. The place where people can think the most about electric and technology are cities. When the sun goes down, and night comes, every one turns the switches to turn on their lights. A typical feeling about city life is a place where the light never goes off, and it can be seen clearly especially at night.  &lt;br /&gt;
&lt;br /&gt;
Working on the project, my original idea was to create multiple little building models by paper and but the little light bulbs inside each of them to create a little city. However, I did not have enough those little light bulbs, so I decided to create a very contrast city image in black and white and print them on a transparency paper, then put the light under the image as the background to light up and show the image clearly. The materials that I used were mostly paper, circuit board, two light bulbs, and electric wire. &lt;br /&gt;
&lt;br /&gt;
It was a very simple switch project, but I think it was very interesting to work on it. After this project, I will probably display it in my room as a decoration light. To improve this project, I think I would make it again by using better material because paper is not a very reliable material to work with light heat and electricity. It could get burn easily if I am not careful. Also, the image can be replaced and print on better material. After all, after this project, I would love to work on it more and create more interesting features for this light box. &lt;br /&gt;
&lt;br /&gt;
[[Image:Diagram.JPG|200px|thumb|left|Diagram]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Before2.JPG|200px|thumb|left|Before turn on]]&lt;br /&gt;
&lt;br /&gt;
[[Image:After.JPG|200px|thumb|left|After turned on by opening the box]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Final Project&lt;br /&gt;
&lt;br /&gt;
For final project, working with Arduino, I am thinking about making something similar to my midterm project in term of the idea about city light. However, for the final, I will make the actual building models instead of just a picture like what I did in the midterm. By using Arduno, I will connect it to computer and control the light in each building (how bright they will be, the colors, and the speed they will blink.) By using computer, I might create a little light show on these little building models. For each building model, different LED light bulbs will be installed inside. I want to use Processing to control the light movement and they way they will be blinking. &lt;br /&gt;
By using Processing, the project might include two parts, the visual on computer and the physical visualization through the building models. They might interact and response to each other.&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=2858</id>
		<title>Students/Uyen Nguyen</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=2858"/>
				<updated>2010-03-05T09:30:09Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello,&lt;br /&gt;
I&amp;#039;m Uyen, ICAM major. I&amp;#039;m taking this class as a requirement for my major. What lead me to ICAM was my interest in both computer science and graphic design. As I am going through this major, I have found many interesting things about art and technology, and also the way they connect together in almost every thing in our life today.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
1.&lt;br /&gt;
[[Image:64020745_11c9c920c2.jpg‎]]&lt;br /&gt;
&lt;br /&gt;
2.&lt;br /&gt;
[[Image:3378128297_a0a4a3b37c.jpg‎]]&lt;br /&gt;
&lt;br /&gt;
3.&lt;br /&gt;
[[Image:Abc.jpg]]&lt;br /&gt;
&lt;br /&gt;
4.&lt;br /&gt;
[[Image:Las_Vegas_slot_machines_b.jpg‎]]&lt;br /&gt;
&lt;br /&gt;
5.&lt;br /&gt;
[[Image:Ola.jpg‎ ]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Midterm Project&lt;br /&gt;
&lt;br /&gt;
For the midterm project, I made a light box. The idea about this light box is using light as an element to emphasize on the sense of city light. Collaborating this idea with the switch, I want to make a light box that when it turns on, it will brighten up a transparency city landscape picture. The switch is actually the top part of the box, so when the box open, the whole circuit is closed and light turn on, when the box close then the circuit open and the light turn of.&lt;br /&gt;
 &lt;br /&gt;
About the concept, since this project is about switch, I was thinking about what a switch usually related to. Usually, the concept about switch goes together with technology and electronic. The place where people can think the most about electric and technology are cities. When the sun goes down, and night comes, every one turns the switches to turn on their lights. A typical feeling about city life is a place where the light never goes off, and it can be seen clearly especially at night.  &lt;br /&gt;
&lt;br /&gt;
Working on the project, my original idea was to create multiple little building models by paper and but the little light bulbs inside each of them to create a little city. However, I did not have enough those little light bulbs, so I decided to create a very contrast city image in black and white and print them on a transparency paper, then put the light under the image as the background to light up and show the image clearly. The materials that I used were mostly paper, circuit board, two light bulbs, and electric wire. &lt;br /&gt;
&lt;br /&gt;
It was a very simple switch project, but I think it was very interesting to work on it. After this project, I will probably display it in my room as a decoration light. To improve this project, I think I would make it again by using better material because paper is not a very reliable material to work with light heat and electricity. It could get burn easily if I am not careful. Also, the image can be replaced and print on better material. After all, after this project, I would love to work on it more and create more interesting features for this light box. &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Diagram.JPG|200px|thumb|left|Diagram]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Before2.JPG|200px|thumb|left|Before turn on]]&lt;br /&gt;
&lt;br /&gt;
[[Image:After.JPG|200px|thumb|left|After turned on by opening the box]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Final Project&lt;br /&gt;
&lt;br /&gt;
For final project, working with Arduino, I am thinking about making something similar to my midterm project in term of the idea about city light. However, for the final, I will make the actual building models instead of just a picture like what I did in the midterm. By using Arduno, I will connect it to computer and control the light in each building (how bright they will be, the colors, and the speed they will blink.) By using computer, I might create a little light show on these little building models. For each building model, different LED light bulbs will be installed inside. I want to use Processing to control the light movement and they way they will be blinking. &lt;br /&gt;
By using Processing, the project might include two parts, the visual on computer and the physical visualization through the building models. They might interact and response to each other.&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=2582</id>
		<title>Students/Uyen Nguyen</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=2582"/>
				<updated>2010-02-04T10:11:45Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello,&lt;br /&gt;
I&amp;#039;m Uyen, ICAM major. I&amp;#039;m taking this class as a requirement for my major. What lead me to ICAM was my interest in both computer science and graphic design. As I am going through this major, I have found many interesting things about art and technology, and also the way they connect together in almost every thing in our life today.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
1.&lt;br /&gt;
[[Image:64020745_11c9c920c2.jpg‎]]&lt;br /&gt;
&lt;br /&gt;
2.&lt;br /&gt;
[[Image:3378128297_a0a4a3b37c.jpg‎]]&lt;br /&gt;
&lt;br /&gt;
3.&lt;br /&gt;
[[Image:Abc.jpg]]&lt;br /&gt;
&lt;br /&gt;
4.&lt;br /&gt;
[[Image:Las_Vegas_slot_machines_b.jpg‎]]&lt;br /&gt;
&lt;br /&gt;
5.&lt;br /&gt;
[[Image:Ola.jpg‎ ]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Midterm Project&lt;br /&gt;
&lt;br /&gt;
For the midterm project, I made a light box. The idea about this light box is using light as an element to emphasize on the sense of city light. Collaborating this idea with the switch, I want to make a light box that when it turns on, it will brighten up a transparency city landscape picture. The switch is actually the top part of the box, so when the box open, the whole circuit is closed and light turn on, when the box close then the circuit open and the light turn of.&lt;br /&gt;
 &lt;br /&gt;
About the concept, since this project is about switch, I was thinking about what a switch usually related to. Usually, the concept about switch goes together with technology and electronic. The place where people can think the most about electric and technology are cities. When the sun goes down, and night comes, every one turns the switches to turn on their lights. A typical feeling about city life is a place where the light never goes off, and it can be seen clearly especially at night.  &lt;br /&gt;
&lt;br /&gt;
Working on the project, my original idea was to create multiple little building models by paper and but the little light bulbs inside each of them to create a little city. However, I did not have enough those little light bulbs, so I decided to create a very contrast city image in black and white and print them on a transparency paper, then put the light under the image as the background to light up and show the image clearly. The materials that I used were mostly paper, circuit board, two light bulbs, and electric wire. &lt;br /&gt;
&lt;br /&gt;
It was a very simple switch project, but I think it was very interesting to work on it. After this project, I will probably display it in my room as a decoration light. To improve this project, I think I would make it again by using better material because paper is not a very reliable material to work with light heat and electricity. It could get burn easily if I am not careful. Also, the image can be replaced and print on better material. After all, after this project, I would love to work on it more and create more interesting features for this light box. &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Diagram.JPG|200px|thumb|left|Diagram]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Before2.JPG|200px|thumb|left|Before turn on]]&lt;br /&gt;
&lt;br /&gt;
[[Image:After.JPG|200px|thumb|left|After turned on by opening the box]]&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=2581</id>
		<title>Students/Uyen Nguyen</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=2581"/>
				<updated>2010-02-04T10:08:18Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello,&lt;br /&gt;
I&amp;#039;m Uyen, ICAM major. I&amp;#039;m taking this class as a requirement for my major. What lead me to ICAM was my interest in both computer science and graphic design. As I am going through this major, I have found many interesting things about art and technology, and also the way they connect together in almost every thing in our life today.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
1.&lt;br /&gt;
[[Image:64020745_11c9c920c2.jpg‎]]&lt;br /&gt;
&lt;br /&gt;
2.&lt;br /&gt;
[[Image:3378128297_a0a4a3b37c.jpg‎]]&lt;br /&gt;
&lt;br /&gt;
3.&lt;br /&gt;
[[Image:Abc.jpg]]&lt;br /&gt;
&lt;br /&gt;
4.&lt;br /&gt;
[[Image:Las_Vegas_slot_machines_b.jpg‎]]&lt;br /&gt;
&lt;br /&gt;
5.&lt;br /&gt;
[[Image:Ola.jpg‎ ]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Midterm Project&lt;br /&gt;
&lt;br /&gt;
For the midterm project, I made a light box. The idea about this light box is using light as an element to emphasize on the sense of city light. Collaborating this idea with the switch, I want to make a light box that when it turns on, it will brighten up a transparency city landscape picture. The switch is actually the top part of the box, so when the box open, the whole circuit is closed and light turn on, when the box close then the circuit open and the light turn of. &lt;br /&gt;
About the concept, since this project is about switch, I was thinking about what a switch usually related to. Usually, the concept about switch goes together with technology and electronic. The place where people can think the most about electric and technology are cities. When the sun goes down, and night comes, every one turns the switches to turn on their lights. A typical feeling about city life is a place where the light never goes off, and it can be seen clearly especially at night.  &lt;br /&gt;
Working on the project, my original idea was to create multiple little building models by paper and but the little light bulbs inside each of them to create a little city. However, I did not have enough those little light bulbs, so I decided to create a very contrast city image in black and white and print them on a transparency paper, then put the light under the image as the background to light up and show the image clearly. The materials that I used were mostly paper, circuit board, two light bulbs, and electric wire. &lt;br /&gt;
It was a very simple switch project, but I think it was very interesting to work on it. After this project, I will probably display it in my room as a decoration light. To improve this project, I think I would make it again by using better material because paper is not a very reliable material to work with light heat and electricity. It could get burn easily if I am not careful. Also, the image can be replaced and print on better material. After all, after this project, I would love to work on it more and create more interesting features for this light box. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Diagram.JPG|200px|thumb|left|Diagram]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Before2.JPG|200px|thumb|left|Before turn on]]&lt;br /&gt;
&lt;br /&gt;
[[Image:After.JPG|200px|thumb|left|After turned on by opening the box]]&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=2580</id>
		<title>Students/Uyen Nguyen</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=2580"/>
				<updated>2010-02-04T10:07:09Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello,&lt;br /&gt;
I&amp;#039;m Uyen, ICAM major. I&amp;#039;m taking this class as a requirement for my major. What lead me to ICAM was my interest in both computer science and graphic design. As I am going through this major, I have found many interesting things about art and technology, and also the way they connect together in almost every thing in our life today.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
1.&lt;br /&gt;
[[Image:64020745_11c9c920c2.jpg‎]]&lt;br /&gt;
&lt;br /&gt;
2.&lt;br /&gt;
[[Image:3378128297_a0a4a3b37c.jpg‎]]&lt;br /&gt;
&lt;br /&gt;
3.&lt;br /&gt;
[[Image:Abc.jpg]]&lt;br /&gt;
&lt;br /&gt;
4.&lt;br /&gt;
[[Image:Las_Vegas_slot_machines_b.jpg‎]]&lt;br /&gt;
&lt;br /&gt;
5.&lt;br /&gt;
[[Image:Ola.jpg‎ ]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Midterm Project&lt;br /&gt;
&lt;br /&gt;
For the midterm project, I made a light box. The idea about this light box is using light as an element to emphasize on the sense of city light. Collaborating this idea with the switch, I want to make a light box that when it turns on, it will brighten up a transparency city landscape picture. The switch is actually the top part of the box, so when the box open, the whole circuit is closed and light turn on, when the box close then the circuit open and the light turn of. &lt;br /&gt;
About the concept, since this project is about switch, I was thinking about what a switch usually related to. Usually, the concept about switch goes together with technology and electronic. The place where people can think the most about electric and technology are cities. When the sun goes down, and night comes, every one turns the switches to turn on their lights. A typical feeling about city life is a place where the light never goes off, and it can be seen clearly especially at night.  &lt;br /&gt;
Working on the project, my original idea was to create multiple little building models by paper and but the little light bulbs inside each of them to create a little city. However, I did not have enough those little light bulbs, so I decided to create a very contrast city image in black and white and print them on a transparency paper, then put the light under the image as the background to light up and show the image clearly. The materials that I used were mostly paper, circuit board, two light bulbs, and electric wire. &lt;br /&gt;
It was a very simple switch project, but I think it was very interesting to work on it. After this project, I will probably display it in my room as a decoration light. To improve this project, I think I would make it again by using better material because paper is not a very reliable material to work with light heat and electricity. It could get burn easily if I am not careful. Also, the image can be replaced and print on better material. After all, after this project, I would love to work on it more and create more interesting features for this light box. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Diagram.JPG|200px|thumb|left|alt text]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Before2.JPG|200px|thumb|left|alt text]]&lt;br /&gt;
&lt;br /&gt;
[[Image:After.JPG|200px|thumb|left|alt text]]&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=File:After.JPG&amp;diff=2579</id>
		<title>File:After.JPG</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=File:After.JPG&amp;diff=2579"/>
				<updated>2010-02-04T10:06:26Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: After turn on by opening the box&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;After turn on by opening the box&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=File:Before2.JPG&amp;diff=2578</id>
		<title>File:Before2.JPG</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=File:Before2.JPG&amp;diff=2578"/>
				<updated>2010-02-04T10:04:01Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: Before turn on&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Before turn on&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=File:Diagram.JPG&amp;diff=2577</id>
		<title>File:Diagram.JPG</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=File:Diagram.JPG&amp;diff=2577"/>
				<updated>2010-02-04T09:58:02Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=1507</id>
		<title>Students/Uyen Nguyen</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=1507"/>
				<updated>2010-01-11T08:26:19Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello,&lt;br /&gt;
I&amp;#039;m Uyen, ICAM major. I&amp;#039;m taking this class as a requirement for my major. What lead me to ICAM was my interest in both computer science and graphic design. As I am going through this major, I have found many interesting things about art and technology, and also the way they connect together in almost every thing in our life today.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
1.&lt;br /&gt;
[[Image:64020745_11c9c920c2.jpg‎]]&lt;br /&gt;
&lt;br /&gt;
2.&lt;br /&gt;
[[Image:3378128297_a0a4a3b37c.jpg‎]]&lt;br /&gt;
&lt;br /&gt;
3.&lt;br /&gt;
[[Image:Abc.jpg]]&lt;br /&gt;
&lt;br /&gt;
4.&lt;br /&gt;
[[Image:Las_Vegas_slot_machines_b.jpg‎]]&lt;br /&gt;
&lt;br /&gt;
5.&lt;br /&gt;
[[Image:Ola.jpg‎ ]]&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=File:Ola.jpg&amp;diff=1506</id>
		<title>File:Ola.jpg</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=File:Ola.jpg&amp;diff=1506"/>
				<updated>2010-01-11T08:26:05Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=File:Las_Vegas_slot_machines_b.jpg&amp;diff=1505</id>
		<title>File:Las Vegas slot machines b.jpg</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=File:Las_Vegas_slot_machines_b.jpg&amp;diff=1505"/>
				<updated>2010-01-11T08:25:30Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=File:Abc.jpg&amp;diff=1504</id>
		<title>File:Abc.jpg</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=File:Abc.jpg&amp;diff=1504"/>
				<updated>2010-01-11T08:22:17Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=1503</id>
		<title>Students/Uyen Nguyen</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=1503"/>
				<updated>2010-01-11T08:16:55Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello,&lt;br /&gt;
I&amp;#039;m Uyen, ICAM major. I&amp;#039;m taking this class as a requirement for my major. What lead me to ICAM was my interest in both computer science and graphic design. As I am going through this major, I have found many interesting things about art and technology, and also the way they connect together in almost every thing in our life today.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
1.&lt;br /&gt;
[[Image:64020745_11c9c920c2.jpg‎]]&lt;br /&gt;
&lt;br /&gt;
2.&lt;br /&gt;
[[Image:3378128297_a0a4a3b37c.jpg‎]]&lt;br /&gt;
&lt;br /&gt;
3.&lt;br /&gt;
[[Image:Apollo 15 Lunar Rover final resting place.jpg]]&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=File:Apollo_15_Lunar_Rover_final_resting_place.jpg&amp;diff=1502</id>
		<title>File:Apollo 15 Lunar Rover final resting place.jpg</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=File:Apollo_15_Lunar_Rover_final_resting_place.jpg&amp;diff=1502"/>
				<updated>2010-01-11T08:13:26Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=File:3378128297_a0a4a3b37c.jpg&amp;diff=1501</id>
		<title>File:3378128297 a0a4a3b37c.jpg</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=File:3378128297_a0a4a3b37c.jpg&amp;diff=1501"/>
				<updated>2010-01-11T08:12:16Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=1500</id>
		<title>Students/Uyen Nguyen</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=1500"/>
				<updated>2010-01-11T08:11:26Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello,&lt;br /&gt;
I&amp;#039;m Uyen, ICAM major. I&amp;#039;m taking this class as a requirement for my major. What lead me to ICAM was my interest in both computer science and graphic design. As I am going through this major, I have found many interesting things about art and technology, and also the way they connect together in almost every thing in our life today.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[Image:64020745_11c9c920c2.jpg‎]]&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=File:64020745_11c9c920c2.jpg&amp;diff=1499</id>
		<title>File:64020745 11c9c920c2.jpg</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=File:64020745_11c9c920c2.jpg&amp;diff=1499"/>
				<updated>2010-01-11T08:10:09Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=1494</id>
		<title>Students/Uyen Nguyen</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=1494"/>
				<updated>2010-01-11T06:26:41Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello,&lt;br /&gt;
I&amp;#039;m Uyen, ICAM major. I&amp;#039;m taking this class as a requirement for my major. What lead me to ICAM was my interest in both computer science and graphic design. As I am going through this major, I have found many interesting things about art and technology, and also the way they connect together in almost every thing in our life today.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=1493</id>
		<title>Students/Uyen Nguyen</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=Students/Uyen_Nguyen&amp;diff=1493"/>
				<updated>2010-01-11T06:24:51Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: New page: Hello, I&amp;#039;m Uyen, ICAM major. I&amp;#039;m taking this class as a requirement for my major. What lead me to ICAM was my interest in both computer science and graphic design. As I am going through th...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello,&lt;br /&gt;
I&amp;#039;m Uyen, ICAM major. I&amp;#039;m taking this class as a requirement for my major. What lead me to ICAM was my interest in both computer science and graphic design. As I am going through this major, I have found many interesting things about art and technology, and also the way they connect together in almost every thing in our life today.&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	<entry>
		<id>http://wiki.roberttwomey.com/index.php?title=Classes/2010/VIS147A&amp;diff=1478</id>
		<title>Classes/2010/VIS147A</title>
		<link rel="alternate" type="text/html" href="http://wiki.roberttwomey.com/index.php?title=Classes/2010/VIS147A&amp;diff=1478"/>
				<updated>2010-01-11T05:26:31Z</updated>
		
		<summary type="html">&lt;p&gt;Uyen Nguyen: /* Student Pages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Instructors ==&lt;br /&gt;
Robert Twomey&lt;br /&gt;
&lt;br /&gt;
rtwomey@ucsd.edu&lt;br /&gt;
*my work: http://roberttwomey.com&lt;br /&gt;
*experimental game lab: http://experimentalgamelab.net&lt;br /&gt;
*CRCA: http://crca.ucsd.edu&lt;br /&gt;
&lt;br /&gt;
Office Hours: Wednesday 3-4pm, Atkinson Hall Rm 1601 (CRCA research neighborhood)&lt;br /&gt;
----&lt;br /&gt;
Tim Schwartz&lt;br /&gt;
&lt;br /&gt;
Section: Wed 1 - 3 &lt;br /&gt;
&lt;br /&gt;
Office Hours: wed 12 - 1&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
Stephanie Lie&lt;br /&gt;
&lt;br /&gt;
sflie@ucsd.edu&lt;br /&gt;
&lt;br /&gt;
Section: Tues 9-10:50, 11-12:50&lt;br /&gt;
&lt;br /&gt;
Office Hours: Wed 2-3, VAF 271&lt;br /&gt;
&lt;br /&gt;
== Platform ==&lt;br /&gt;
&lt;br /&gt;
[[Image:freeduino.jpg]] [[Image:Fk_schematic2 L.jpg|400px|thumb]]&lt;br /&gt;
[http://www.atmel.com/dyn/resources/prod_documents/doc8025.pdf datasheet (400+ pages)]&lt;br /&gt;
&lt;br /&gt;
== Grading == &lt;br /&gt;
Overall grade:&lt;br /&gt;
* Assignments 50%&lt;br /&gt;
* Midterm Project 20%&lt;br /&gt;
* Final Project 30%&lt;br /&gt;
&lt;br /&gt;
Assignments are graded on completion.  If I assign something during lecture or if you do not finish a lab activity, that item will be due by the next section (one week later).  If you finish on time, you will get 100% credit.&lt;br /&gt;
&lt;br /&gt;
Attendance is mandatory.  Each absence (from lecture or section) is a 1/2 letter grade deduction off your final grade.  Three absences is a failing grade.&lt;br /&gt;
&lt;br /&gt;
Projects are graded on :&lt;br /&gt;
* 33.3% - concept/proposal&lt;br /&gt;
* 33.3% - effort&lt;br /&gt;
* 33.3% - realization/documentation&lt;br /&gt;
&lt;br /&gt;
Readings will familiarize you with material covered in lecture.&lt;br /&gt;
&lt;br /&gt;
== Books ==&lt;br /&gt;
* Scherz, Paul.  Practical Electronics for Inventors, 2nd Ed. 2006. http://www.amazon.com/Practical-Electronics-Inventors-Paul-Scherz/dp/0071452818/ref=sr_1_1?ie=UTF8&amp;amp;s=books&amp;amp;qid=1263187143&amp;amp;sr=8-1&lt;br /&gt;
* Banzi, Massimo. Getting Started with Arduino. 2008 http://www.amazon.com/Getting-Started-Arduino-Make-Projects/dp/0596155514/ref=sr_1_1?ie=UTF8&amp;amp;s=books&amp;amp;qid=1263187109&amp;amp;sr=8-1&lt;br /&gt;
&lt;br /&gt;
== Lab Safety ==&lt;br /&gt;
BE CAREFUL. IF YOU DON&amp;#039;T KNOW, ASK.&lt;br /&gt;
* http://hyperphysics.phy-astr.gsu.edu/hbase/electric/shock.html&lt;br /&gt;
* http://www.allaboutcircuits.com/vol_1/chpt_3/4.html&lt;br /&gt;
&lt;br /&gt;
== Curriculum ==&lt;br /&gt;
&lt;br /&gt;
=== Week 1 - Intro ===&lt;br /&gt;
* Lecture:&lt;br /&gt;
** Grading/rules&lt;br /&gt;
** Goals&lt;br /&gt;
** Art&lt;br /&gt;
* Homework 1: &lt;br /&gt;
** part 1 - Create a page for yourself on the wiki, adding it to this list [Classes/2010/VIS147A#Student_Pages]. On your personal page, put your name and one paragraph describing your interests in art generally and your interests in electronics and art specifically.  Questions to get started: Why are you an art/ICAM major?  Are you an art major?  Why are you taking this class in particular?  Do you have any previous experience with electronics?&lt;br /&gt;
** part 2 - Field Research.  If it plugs in, has buttons, has a switch, toasts bread, emits light, it probably runs on electricity.  We are surrounded by electronic devices.  This presents an opportunity.  Conceivably, with the right hardware, you can interface with or control any electronic device.  Exploring your local environment (your neighborhood, walmart) make a list of electrical devices, and document the 5 most interesting in this regard--things you would like to control.  Avoid the dorm room problem--i.e. do not photograph things in your dorm room, apartment, at the price center, etc., unless you have good reason to do so.  Dorm room art looks like dorm room&amp;#039;s and thus enters the world severely handicapped.  Don&amp;#039;t do it!!!  Document means photograph, video, or draw.  Post images of these five things to the wiki page you made in part 1.  If you are feeling extra creative, briefly describe how you would use each item. &lt;br /&gt;
* Lab 1:&lt;br /&gt;
&lt;br /&gt;
=== Week 2 - Voltage, Current, Resistance / Circuit, Diagram, Switch ===&lt;br /&gt;
* Reading for class: Scherz p 1-28, 49-62.&lt;br /&gt;
* Lecture: Voltage, Current, Resistance / Circuit, Diagram, Switch &lt;br /&gt;
* Homework 2:&lt;br /&gt;
* Lab 2:&lt;br /&gt;
&lt;br /&gt;
=== Week 3 - Sensors ===&lt;br /&gt;
* Lecture:&lt;br /&gt;
* Homework 3: &lt;br /&gt;
* Lab 3:&lt;br /&gt;
&lt;br /&gt;
=== Week 4 - LEDs, Transistors, Semiconductors ===&lt;br /&gt;
* Lecture:&lt;br /&gt;
* Homework 4: Proposal for Midterm Project&lt;br /&gt;
* Lab 4:&lt;br /&gt;
&lt;br /&gt;
=== Week 5 - Motors, Coils, Inductors ===&lt;br /&gt;
* Lecture: MedTech&lt;br /&gt;
** http://www.swharden.com/blog/2009-08-14-diy-ecg-machine-on-the-cheap/&lt;br /&gt;
**other&lt;br /&gt;
***Transcranial Magnetic Stimulation (TMS)&lt;br /&gt;
**** [http://transcenmentalism.org/OpenStim/tiki-index.php http://transcenmentalism.org/OpenStim]&lt;br /&gt;
***Electronic Muscle Stimulation (EMS)&lt;br /&gt;
**[[MedTech]]&lt;br /&gt;
** wireless stethoscope &lt;br /&gt;
*** http://www.freedomscope.com/&lt;br /&gt;
*** http://solutions.3m.com/wps/portal/3M/en_US/Littmann_3100_3200/stethoscope/?#Model3200&lt;br /&gt;
* Homework 5:&lt;br /&gt;
* Lab 5:&lt;br /&gt;
&lt;br /&gt;
=== Week 6 - Microcontrollers ===&lt;br /&gt;
* Lecture 6: intro to microcontrollers.  soldering.  breadboards.&lt;br /&gt;
* Homework 6:&lt;br /&gt;
* Lab 6: [[Classes/2010/VIS147A/Lab6 | assemble freeduino]]&lt;br /&gt;
=== Week 7 - Digital input/output===&lt;br /&gt;
* Lecture:&lt;br /&gt;
* Homework 7:&lt;br /&gt;
* Lab 7: [[Classes/2010/VIS147A/Lab7 | digital input/output]]&lt;br /&gt;
=== Week 8 - Analog Input/Output, PWM ===&lt;br /&gt;
* Lecture:&lt;br /&gt;
* Homework 8:&lt;br /&gt;
* Lab 8: [[Classes/2010/VIS147A/Lab8 | analog input/output, PWM]]&lt;br /&gt;
=== Week 9 - Interfacing with the computer, higher level sensors ===&lt;br /&gt;
* Lecture:&lt;br /&gt;
** serial communication&lt;br /&gt;
* Homework 9:&lt;br /&gt;
* Lab 9: [[Classes/2010/VIS147A/Lab9 | serial communication]]&lt;br /&gt;
=== Week 10 - Summary, discussion, wind-down ===&lt;br /&gt;
* Lecture: &lt;br /&gt;
* Homework 10: work on finals.  get help&lt;br /&gt;
* For Next Week: finish final projects&lt;br /&gt;
=== Finals ===&lt;br /&gt;
* Scheduled time for final project assistance&lt;br /&gt;
* Final Project Presentations. (time/location TBD)&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
=== Reference ===&lt;br /&gt;
* sensors&lt;br /&gt;
** http://itp.nyu.edu/physcomp/sensors&lt;br /&gt;
** https://ccrma.stanford.edu/CCRMA/Courses/252/sensors/sensors.html&lt;br /&gt;
* motors&lt;br /&gt;
** http://music.columbia.edu/~douglas/classes/motor_mania/&lt;br /&gt;
&lt;br /&gt;
=== Other Similar Classes ===&lt;br /&gt;
* http://itp.nyu.edu/physcomp/Intro/HomePage&lt;br /&gt;
* Microcontrollers and sensors http://music.columbia.edu/~douglas/classes/microcontrollers/&lt;br /&gt;
* mechanical actuators http://music.columbia.edu/~douglas/classes/robotics_mechanics/&lt;br /&gt;
&lt;br /&gt;
=== WhereTo Get Parts ===&lt;br /&gt;
* digikey&lt;br /&gt;
* mouser&lt;br /&gt;
* mcmaster-carr&lt;br /&gt;
* small parts&lt;br /&gt;
&lt;br /&gt;
=== Previous Final Projects ===&lt;br /&gt;
* http://wiki.roberttwomey.com/Electronic_Technologies_for_Art#Students_Pages&lt;br /&gt;
=== Main Board ===&lt;br /&gt;
Many different options.  All share a common programming environment, common code, and a similar physical layout.   The board we are using does not require an external USB adaptor, which means all we need to do to program (and power) it is to plug it into the computer with a USB cable. &lt;br /&gt;
&lt;br /&gt;
Here are some of the variants:&lt;br /&gt;
&lt;br /&gt;
*Arduino&lt;br /&gt;
** Arduino Duemilanove http://moderndevice.com/diecimila.shtml&lt;br /&gt;
* Freeduinos&lt;br /&gt;
** http://www.freeduino.org/buy.html&lt;br /&gt;
** http://www.hvwtech.com/products_view.asp?ProductID=682&lt;br /&gt;
** http://www.nkcelectronics.com/freeduino-arduino-diecimila-compatible-board-complete-kit.html&lt;br /&gt;
**http://mcukits.com/2009/03/12/assembling-the-freeduino-board-kit/&lt;br /&gt;
* Bare Bones Freeduinos&lt;br /&gt;
** Bare Bones Board http://moderndevice.com/index.shtml&lt;br /&gt;
** Readlly Bare Bones Board http://moderndevice.com/RBBB_revB.shtml&lt;br /&gt;
** require external USB adapter&lt;br /&gt;
* Off-board Serial&lt;br /&gt;
** FTDI breakout board (with DTR reset) http://www.sparkfun.com/commerce/product_info.php?products_id=8772&lt;br /&gt;
&lt;br /&gt;
== Student Pages ==&lt;br /&gt;
Register to create a log-in in the upper right.&lt;br /&gt;
&lt;br /&gt;
wiki-text of the form: &amp;lt;code&amp;gt;&amp;lt;nowiki&amp;gt;[[Students/RobertTwomey | RobertTwomey]]&amp;lt;/nowiki&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
will come out looking like this: [[Students/RobertTwomey | RobertTwomey]], which is a link to your new personal page on the wiki.  Click on it and begin editing away. &lt;br /&gt;
&lt;br /&gt;
There is editing help here http://en.wikipedia.org/wiki/Help:Editing and here http://en.wikipedia.org/wiki/Wikipedia:Cheatsheet. Image uploading help is here http://en.wikipedia.org/wiki/Wikipedia:Uploading_images.  Of course you can always view the source of my page (or any other page) to learn how to do things. &lt;br /&gt;
&lt;br /&gt;
Click &amp;quot;edit&amp;quot; on the right to add your own page below. &lt;br /&gt;
* [[Students/RobertTwomey | RobertTwomey]]&lt;br /&gt;
* [[Students/StevenYuan | Steven Yuan]]&lt;br /&gt;
* [[Students/Carol Ahn | Carol Ahn]]&lt;br /&gt;
* [[Students/Jet Antonio | Jet Antonio]]&lt;br /&gt;
* [[Students/Tiffany Lee | Tiffany Lee]]&lt;br /&gt;
* [[Students/Erika Marie Go | Erika Marie Go]]&lt;br /&gt;
* [[Students/KristenZwicker | Kristen Zwicker]]&lt;br /&gt;
* [[Students/MikeTeall | Mike Teall]]&lt;br /&gt;
* [[Students/SamanthaPeterson | Samantha Peterson]]&lt;br /&gt;
* [[Students/Tung Mach | Tung Mach]]&lt;br /&gt;
* [[Students/Joeny Thipsidakhom | Joeny Thipsidakhom]]&lt;br /&gt;
* [[Students/KaylaCheves | Kayla Cheves]]&lt;br /&gt;
* [[Students/KimBeswick | KimBeswick]]&lt;br /&gt;
* [[Students/Uyen Nguyen | Uyen Nguyen]]&lt;br /&gt;
*and&lt;br /&gt;
*more&lt;br /&gt;
*students&lt;/div&gt;</summary>
		<author><name>Uyen Nguyen</name></author>	</entry>

	</feed>