<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Liz Arum&#039;s Blog &#187; Physical Computing</title>
	<atom:link href="http://blog.lizarum.com/tag/physical-computing/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.lizarum.com</link>
	<description>I teach tech and share it</description>
	<lastBuildDate>Thu, 29 Sep 2011 16:29:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>A cute soft circuit project</title>
		<link>http://blog.lizarum.com/2009/10/a-cute-soft-circuit-project/</link>
		<comments>http://blog.lizarum.com/2009/10/a-cute-soft-circuit-project/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 18:55:59 +0000</pubDate>
		<dc:creator>Lizabeth Arum</dc:creator>
				<category><![CDATA[Circuits]]></category>
		<category><![CDATA[Teaching]]></category>
		<category><![CDATA[Arduino]]></category>
		<category><![CDATA[Physical Computing]]></category>
		<category><![CDATA[puppet]]></category>
		<category><![CDATA[Soft Circuits]]></category>

		<guid isPermaLink="false">http://blog.lizarum.com/?p=146</guid>
		<description><![CDATA[Here&#8217;s a soft circuit with 2 LEDs and a button. It is basically an electronic sock puppet. I used a sock covered in a knitted bag. The button is a sewing snap. When the mouth closes, the button returns a 1 and the LEDs flicker. Here&#8217;s the code #define btn 4 #define led1 3 #define [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a soft circuit with 2 LEDs and a button. It is basically an electronic sock puppet.</p>
<p>I used a sock covered in a knitted bag. The button is a sewing snap. When the mouth closes, the button returns a 1 and the LEDs flicker.</p>
<p><object classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' width="640"<br />
        height="850" codebase='http://www.apple.com/qtactivex/qtplugin.cab'><param name='src' value="../../images/keyframes/your_mov_name.MOV"><param name='autoplay' value="true"><param name='controller' value="true"><param name='loop' value="true"><embed src="http://blog.lizarum.com/wp-content/uploads/2009/10/puppet1.mov" width="320" height="255" autoplay="false"<br />
        controller="true" loop="false" pluginspage='http://www.apple.com/quicktime/download/'></embed></object></p>
<p>Here&#8217;s the code</p>
<p><code>#define btn 4<br />
#define led1 3<br />
#define led2 9<br />
int btnState;</p>
<p>void setup(){<br />
  pinMode(led1,OUTPUT);<br />
   pinMode(led2,OUTPUT);<br />
  pinMode(btn,INPUT);</p>
<p>}</p>
<p>void loop(){<br />
btnState=digitalRead(btn);<br />
if(btnState){<br />
      for(int i=50;i<255;i+=5){<br />
        analogWrite(led1,i);<br />
          analogWrite(led2,i);<br />
        delay(10);<br />
      }<br />
       for(int i=255;i>100;i-=5){<br />
        analogWrite(led1,i);<br />
          analogWrite(led2,i);<br />
        delay(10);<br />
      }<br />
}else{<br />
   digitalWrite(led1,LOW);<br />
   digitalWrite(led2,LOW);<br />
}<br />
      Serial.println(digitalRead(btn));<br />
}</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lizarum.com/2009/10/a-cute-soft-circuit-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://blog.lizarum.com/wp-content/uploads/2009/10/puppet1.mov" length="431587" type="video/quicktime" />
		</item>
		<item>
		<title>Freeduinos!</title>
		<link>http://blog.lizarum.com/2009/09/freeduinos/</link>
		<comments>http://blog.lizarum.com/2009/09/freeduinos/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 04:08:36 +0000</pubDate>
		<dc:creator>Lizabeth Arum</dc:creator>
				<category><![CDATA[Circuits]]></category>
		<category><![CDATA[Arduino]]></category>
		<category><![CDATA[Physical Computing]]></category>
		<category><![CDATA[Teaching]]></category>

		<guid isPermaLink="false">http://blog.lizarum.com/?p=127</guid>
		<description><![CDATA[Both my middle school and high school classes worked on putting together the Freeduino kits. In order to avoid any soldering mistakes, I asked students to place all there resistors in the board first, and once I checked them, they could solder away. Capacitors were next, then LEDs then everything else. The middle school class [...]]]></description>
			<content:encoded><![CDATA[<p>Both my middle school and high school classes worked on putting together the <a href="http://www.nkcelectronics.com/freeduino-arduino-diecimila-compatible-board-complete-kit.html">Freeduino kits</a>.<br /><img src="http://blog.lizarum.com/wp-content/uploads/2009/09/yhst-82942516561161_2071_4704635.jpeg" alt="yhst-82942516561161_2071_4704635" title="yhst-82942516561161_2071_4704635" width="400" height="267" class="alignnone size-full wp-image-130" /><br />
 In order to avoid any soldering mistakes, I asked students to place all there resistors in the board first, and once I checked them, they could solder away. Capacitors were next, then LEDs then everything else. The middle school class had more success with putting the kits together quickly. Maybe soldering was more of a novelty for them? They completed their boards within two classes, but the high school students had the potential to drag the process into a third class. Rather than do that, I finished all but one of the boards. There was one  high school student who completed his Freeduino over the weekend and worked on the <a href="http://www.adafruit.com/index.php?main_page=product_info&#038;cPath=17_21&#038;products_id=51&#038;zenid=1bda84f6ddfa5c96288f40e4ce8b010e">Proto Shield from Adafruit</a> in class.</p>
<p>My intention was to also have both groups make Proto Shields, but now I&#8217;m thinking that that project should be optional.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lizarum.com/2009/09/freeduinos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Tone Generator and a Cool Purchase</title>
		<link>http://blog.lizarum.com/2009/09/88/</link>
		<comments>http://blog.lizarum.com/2009/09/88/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 02:19:12 +0000</pubDate>
		<dc:creator>Lizabeth Arum</dc:creator>
				<category><![CDATA[Circuits]]></category>
		<category><![CDATA[Teaching]]></category>
		<category><![CDATA[Makerbot]]></category>
		<category><![CDATA[Physical Computing]]></category>
		<category><![CDATA[Timer IC]]></category>

		<guid isPermaLink="false">http://blog.lizarum.com/?p=88</guid>
		<description><![CDATA[A few years back, I took a summer physical computing class at Parsons with Dan Mikesell. For our first circuit he gave us the following schematic and image to work with: I like this assignment because it introduces an IC chip, the NE555 Timer, and it makes an awful noise when it works. I also [...]]]></description>
			<content:encoded><![CDATA[<p>A few years back, I took a summer physical computing class at Parsons with Dan Mikesell. For our first circuit he gave us the following schematic and image to work with:<br />
<img src="http://blog.lizarum.com/wp-content/uploads/2009/09/555circuit-600x463.jpg" alt="555circuit" title="555circuit" width="600" height="463" class="alignnone size-medium wp-image-91" /><img src="http://blog.lizarum.com/wp-content/uploads/2009/09/555pinout-600x515.jpg" alt="555pinout" title="555pinout" width="600" height="515" class="alignnone size-medium wp-image-92" /><br />
I like this assignment because it introduces an IC chip, the NE555 Timer, and it makes an awful noise when it works. I also like it because initially it seems hard, but when students take a moment to think about the connections, it turns out to be quite simple. I always tell students to start with the GND and Vcc pins and go from there. It&#8217;s like solving a puzzle.</p>
<p>After displaying the schematic, I hand out a bag with the components. For each student, or group of students, I remove the components from the bag, name them, and describe their function. Then I leave students alone to figure out the wiring.</p>
<p>Today was Middle School Physical Computing and it was the last  class of the day. Everyone was exhausted, but we still managed to play with the LED Resistor Calculator and two students out of eight were able to generate annoying tones. </p>
<p>Success!</p>
<p>I also purchased the <a href="http://makerbot.com/">Makerbot </a>CupCake CNC  for school today. Makerbot describes the &#8220;CupCake CNC as a rock solid open source 3D printer that is easy to build, easy to run, and easy to use. Its 100% open source, built to be hacked, and beginner friendly.&#8221; The plan is to have the High School students research digital fabrication and then build the printer in November. Very cool!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lizarum.com/2009/09/88/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Piranha Leds and LED Resistance Calculators</title>
		<link>http://blog.lizarum.com/2009/09/piranha-leds-and-led-resistance-calculators/</link>
		<comments>http://blog.lizarum.com/2009/09/piranha-leds-and-led-resistance-calculators/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 01:08:37 +0000</pubDate>
		<dc:creator>Lizabeth Arum</dc:creator>
				<category><![CDATA[Circuits]]></category>
		<category><![CDATA[Teaching]]></category>
		<category><![CDATA[LEDs]]></category>
		<category><![CDATA[Physical Computing]]></category>
		<category><![CDATA[resistors]]></category>

		<guid isPermaLink="false">http://blog.lizarum.com/?p=77</guid>
		<description><![CDATA[It was the first Middle School Physical Computing class of the week today. Class was split between two activities. The first was lighting a 5mm Flux RGB LED piranha. While not told whether they had a common cathode or common anode LED, students were given the following information: DC forward current 20mA Red: 2V typ, [...]]]></description>
			<content:encoded><![CDATA[<p>It was the first Middle School Physical Computing class of the week today. Class was split between two activities. The first was lighting a 5mm Flux RGB LED piranha. While not told whether they had a common cathode or common anode LED, students were given the following information:<br />
<img src="http://blog.lizarum.com/wp-content/uploads/2009/09/rgb_piranha.png" alt="rgb_piranha" title="rgb_piranha" width="185" height="182" class="alignnone size-full wp-image-78" /> <br />
DC forward current 20mA<br />
Red: 2V typ, 2.4V max<br />
Green: 3V typ, 3.6V max<br />
Blue: 3V typ, 3.6V max</p>
<p>After determining their resistor values, each student wired up their circuits to discover if their led was common cathode or common anode. Only one student managed to burn out the led by wiring both sides to power. </p>
<p>After creating some blended colors, students put the lights aside and went on to construct  <a href="http://www.evilmadscientist.com/article.php/ledcalc">Evil Mad Scientists</a>&#8216;s LED Resistance Calculators.</p>
<p>Next class we&#8217;ll put the calculators to use and solve a few problems!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lizarum.com/2009/09/piranha-leds-and-led-resistance-calculators/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Second Time Around</title>
		<link>http://blog.lizarum.com/2009/09/the-second-time-around/</link>
		<comments>http://blog.lizarum.com/2009/09/the-second-time-around/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 02:13:07 +0000</pubDate>
		<dc:creator>Lizabeth Arum</dc:creator>
				<category><![CDATA[Circuits]]></category>
		<category><![CDATA[Teaching]]></category>
		<category><![CDATA[Physical Computing]]></category>

		<guid isPermaLink="false">http://blog.lizarum.com/?p=36</guid>
		<description><![CDATA[In order to wire the circuits and cover all the topics, I put the following information on the board before class started: VF= Forward Voltage/ Voltage Drop. The minimum amount of voltage needed to light an LED lV= Luminous Intensity The amount of light emitted from an LED in a particular direction. The greater the [...]]]></description>
			<content:encoded><![CDATA[<p>In order to wire the circuits and cover all the topics, I put the following information on the board before class started:<br />
</p>
<ul>
<li><strong>V<sub>F</sub></strong>= Forward Voltage/ Voltage Drop. <br />
The minimum amount of voltage needed to light an LED</p>
</li>
<li><strong>l<sub>V</sub></strong>= Luminous Intensity<br />
 The amount of light emitted from an LED in a particular direction.<br />
 The greater the numbers the brighter the light. </p>
</li>
<li><strong>I<sub>F</sub></strong>= Forward Current <br />
The amount of current the LED uses.</p>
</li>
<li><strong>Viewing Angle</strong><br />
The distribution or spread of light.</p>
</li>
</ul>
<p>And the following diagram:<br /><img src="http://blog.lizarum.com/wp-content/uploads/2009/09/3pie1.gif" alt="Ohm&#039;s Law" title="Ohm&#039;s Law" width="179" height="159" class="alignnone size-full wp-image-38" /></p>
<p>Again, all materials were either distributed or placed on the floor in the middle of the group. Students worked together and everyone wired the first circuit using alligator clips, the second circuit using the 12VDC power supply and the third and fourth which wired the  LEDs in series and then in parallel. In order to demonstrate the different voltage drops, the class experimented with different colored LEDs.</p>
<p>Flashing LEDs were thrown into the mix because they&#8217;re cool.</p>
<p>Today&#8217;s class was the last of the day and when it was over, some students stayed late to chat and help clean up.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lizarum.com/2009/09/the-second-time-around/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First Circuits with High School</title>
		<link>http://blog.lizarum.com/2009/09/first-circuits-with-high-school/</link>
		<comments>http://blog.lizarum.com/2009/09/first-circuits-with-high-school/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 02:48:10 +0000</pubDate>
		<dc:creator>Lizabeth Arum</dc:creator>
				<category><![CDATA[Circuits]]></category>
		<category><![CDATA[Physical Computing]]></category>
		<category><![CDATA[Teaching]]></category>

		<guid isPermaLink="false">http://blog.lizarum.com/?p=13</guid>
		<description><![CDATA[So today we wired up our first circuits. Before class started I put together boxes for each student with a breadboard, LEDs and a voltage regulator. When students came into class, I handed them their boxes and placed wires, batteries, alligator clips, wire cutters and strippers in the center of the room. Sitting on the [...]]]></description>
			<content:encoded><![CDATA[<p>So today we wired up our first circuits. Before class started I put together boxes for each student with a breadboard, LEDs and a voltage regulator. When students came into class, I handed them their boxes and placed wires, batteries, alligator clips, wire cutters and strippers in the center of the room. Sitting on the floor, we started with nine volt batteries and LEDs with a <strong>forward voltage</strong> of 3V and a <strong>forward current</strong> of 0.03A. After using Ohm&#8217;s Law to figure out the resistance, we selected resistors and used alligator clips to make connections and light the LEDs.</p>
<p>The second circuit included a breadboard, a 12V DC power supply, an LM7805 voltage regulator, an LED and a resistor. As students were less confident about wiring up the voltage regulator and figuring out the new resistance, this circuit took a bit longer to complete. <br />
<div id="attachment_14" class="wp-caption alignnone" style="width: 253px"><img src="http://blog.lizarum.com/wp-content/uploads/2009/09/vr_detail.jpg" alt="voltage regulator detail" title="voltage regulator detail" width="243" height="380" class="size-full wp-image-14" /><p class="wp-caption-text">voltage regulator detail</p></div></p>
<p>After a final wiring check, power supplies were plugged in, and LEDs lit up. </p>
<p>The next circuits involved wiring LEDs in parallel and in series. The challenge here was to see how many could be lit in series and how many in parallel.</p>
<p>Forty-five minutes goes fast. Even though all the materials were prepared ahead of time, I didn&#8217;t get a chance  to cover LED properties or the resistor values involved with illuminating an RGB LED in the way that I planned. No one had time to wire up the Piranhas, or High-Flux LEDs, and no one had a chance to clean up before running to their next class.  <br />
<table border="1" cellspacing="0" cellpadding="5" frame="border" rules="all">
<tr>
<th>Type</th>
<th>Color</th>
<th>I<sub>F</sub></th>
<th>V<sub>F</sub> Typ</th>
<th>V<sub>F</sub> Max</th>
<th>Luminous Intensity</th>
<th>Viewing Angle</th>
<th>Wavelength</th>
</tr>
<tr>
<td>Standard</td>
<td>Red</td>
<td>30mA</td>
<td>1.7V</td>
<td>2.1V</td>
<td>5mcd@10mA</td>
<td>60&deg;</td>
<td>660nm</td>
</tr>
<tr>
<td>Standard</td>
<td>Yellow</td>
<td>30mA</td>
<td>2.1V</td>
<td>2.5V</td>
<td>32mcd@20mA</td>
<td>60&deg;</td>
<td>565nm</td>
</tr>
<tr>
<td>Super bright</td>
<td>Red</td>
<td>30mA</td>
<td>1.85V</td>
<td>2.5V</td>
<td>500mcd@20mA</td>
<td>60&deg;</td>
<td>660nm</td>
</tr>
</table>
<p>Well, tomorrow I&#8217;ll get another shot at it when the Middle School Physical Computing class works on their first circuits.</p>
<div style="height:72px;"></div>
<p><small>This assignment was inspired by <a href="http://www.amazon.com/Fashioning-Technology-Intro-Crafting-Projects/dp/0596514379">Syuzi Pakhchan&#8217;s book Fashioning Technology</a> and from the first circuit I made at ITP in 1998.</small></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lizarum.com/2009/09/first-circuits-with-high-school/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello World!</title>
		<link>http://blog.lizarum.com/2009/09/hello-world-2/</link>
		<comments>http://blog.lizarum.com/2009/09/hello-world-2/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 02:54:58 +0000</pubDate>
		<dc:creator>Lizabeth Arum</dc:creator>
				<category><![CDATA[Teaching]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[Blender]]></category>
		<category><![CDATA[Circuits]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Physical Computing]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://blog.lizarum.com/?p=3</guid>
		<description><![CDATA[After spending the past summer gathering materials for my different classes, I thought it might be nice to share what I found inspiring, what I learned and how it all panned out. Over the year, I will write about my experiences teaching Physical Computing, IPhone programming, and 2D and 3D animation to kids. I&#8217;ll try [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-medium wp-image-4" title="clark" src="http://blog.lizarum.com/wp-content/uploads/2009/09/clark-500x375.jpg" alt="clark" width="500" height="375" /><br />
<br />After spending the past summer gathering materials for my different classes, I thought it might be nice to share what I found inspiring, what I learned and how it all panned out. </p>
<p>Over the year, I will write about my experiences teaching Physical Computing, IPhone programming, and 2D and 3D animation  to kids. I&#8217;ll try to explore what worked and what didn&#8217;t, what I would do again, and what I wouldn&#8217;t. </p>
<p>I&#8217;ve learned so much from various people, books and websites, and I hope that by sharing my thoughts, successes and failures, I can give back to a community that I have gotten so much from.</p>
<p>This is my first blog. wish me luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.lizarum.com/2009/09/hello-world-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

