<?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>The Electronics Hobbyist &#187; RGB LED</title>
	<atom:link href="http://www.theelectronicshobbyist.com/blog/tag/rgb-led/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.theelectronicshobbyist.com/blog</link>
	<description>A Passion for Curiosity and Play</description>
	<lastBuildDate>Fri, 20 Jan 2012 14:54:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Arduino RGB LED Control for the Spinning Night Light &#124; Part 4</title>
		<link>http://www.theelectronicshobbyist.com/blog/arduino-rgb-led-control-spinning-night-light/</link>
		<comments>http://www.theelectronicshobbyist.com/blog/arduino-rgb-led-control-spinning-night-light/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 05:00:43 +0000</pubDate>
		<dc:creator>Natalia</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[light]]></category>
		<category><![CDATA[Ohm's Law]]></category>
		<category><![CDATA[resistor]]></category>
		<category><![CDATA[RGB LED]]></category>
		<category><![CDATA[sketch]]></category>

		<guid isPermaLink="false">http://www.theelectronicshobbyist.com/blog/?p=334</guid>
		<description><![CDATA[When looking at the parts list for the Arduino RGB LED spinning night light you must have noticed that current limiting resistors of different values were used for the Red and the Green/Blue pins of the RGB LED. That is due to them having different forward voltage ratings. You can find complete specs for the [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>When looking at the <a href="http://www.theelectronicshobbyist.com/blog/2010/07/arduino-rgb-led-spinning-night-light/" target="_blank">parts list for the Arduino RGB LED spinning night light</a> you must have noticed that current limiting resistors of different values were used for the Red and the Green/Blue pins of the <a href="http://www.cutedigi.com/product_info.php?ref=3&amp;products_id=4212&amp;affiliate_banner_id=1" target="_blank">RGB LED</a>. That is due to them having different forward voltage ratings. You can find complete specs for the LED in the datasheet (when buying an electronic component you will have the option to download its datasheet, or the relevant information will be provided by the vendor).</p>
<p>We use <a href="http://en.wikipedia.org/wiki/Ohm's_law" target="_blank">Ohm&#8217;s Law</a> to calculate current limiting resistor values:<br />
<span id="more-334"></span><br />
Forward voltage ratings:</p>
<blockquote><p>RED: 2.1V<br />
GREEN: 3.3V<br />
BLUE: 3.3V</p></blockquote>
<p>Current:</p>
<blockquote><p>I = 20mA</p></blockquote>
<p>Supply voltage:</p>
<blockquote><p>V = 5V</p></blockquote>
<p>Ohm&#8217;s Law:</p>
<blockquote><p>I = V/R =&gt; R = V/I</p></blockquote>
<p>So for Red:</p>
<blockquote><p>(5 &#8211; 2.1)/0.02 =&gt; R = 145 Ohm</p></blockquote>
<p>For Green/Blue:</p>
<blockquote><p>(5 &#8211; 3.3)/0.02 =&gt; R = 85 Ohm</p></blockquote>
<p><a href="http://www.theelectronicshobbyist.com/blog/wp-content/uploads/2010/07/fade.jpg"><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="size-medium wp-image-343 alignright" title="fade" src="http://www.theelectronicshobbyist.com/blog/wp-content/uploads/2010/07/fade-254x300.jpg" alt="color fading for the RGB LED night light" width="254" height="300" /></a>As for the <a href="http://www.theelectronicshobbyist.com/blog/goto/uno" style="" target="_blank" rel="nofollow" onmouseover="self.status='http://www.theelectronicshobbyist.com/blog/goto/uno';return true;" onmouseout="self.status=''">Arduino</a> sketch, I chose to have the lamp fade between two colors, aqua (#00FFFF) and magenta (#FF00FF). For that I kept the Blue value at 255 and varied the Green and Red values between 0-255 to achieve the desired colors, as shown in the diagram:<br />
(You can pick your favorite colors, cycle through the entire spectrum, or go psychedelic and show random colors with random delays)</p>
<pre>// fade from aqua to magenta
  for (int i = 0; i < 256; i++) {
    analogWrite(RED, 255-i);
    analogWrite(GREEN, i);
    analogWrite(BLUE, 0);
    delay(50);
  }

  // fade from magenta to aqua
  for (int i = 0; i < 256; i++) {
    analogWrite(RED, i);
    analogWrite(GREEN, 255-i);
    analogWrite(BLUE, 0);
    delay(50);
  }
</pre>
<p>Here's the <a href="http://www.theelectronicshobbyist.com/blog/2010/07/arduino-rgb-led-spinning-night-light/">full sketch for the night light</a>.</p>
<p>You might also enjoy:<ol>
<li><a href='http://www.theelectronicshobbyist.com/blog/arduino-rgb-led-spinning-night-light/' rel='bookmark' title='Arduino RGB LED Spinning Night Light | Part 1'>Arduino RGB LED Spinning Night Light | Part 1</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/arduino-motor-control-spinning-night-light/' rel='bookmark' title='Arduino Motor Control for the Spinning Night Light | Part 3'>Arduino Motor Control for the Spinning Night Light | Part 3</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/arduino-rgb-led-spinning-night-light-assembly/' rel='bookmark' title='Arduino RGB LED Spinning Night Light: Assembly | Part 2'>Arduino RGB LED Spinning Night Light: Assembly | Part 2</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/arduino-led-control-using-dip-switch/' rel='bookmark' title='Arduino LED Control Using DIP Switch | Part 1'>Arduino LED Control Using DIP Switch | Part 1</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.theelectronicshobbyist.com/blog/arduino-rgb-led-control-spinning-night-light/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Arduino RGB LED Spinning Night Light: Assembly &#124; Part 2</title>
		<link>http://www.theelectronicshobbyist.com/blog/arduino-rgb-led-spinning-night-light-assembly/</link>
		<comments>http://www.theelectronicshobbyist.com/blog/arduino-rgb-led-spinning-night-light-assembly/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 05:00:12 +0000</pubDate>
		<dc:creator>Natalia</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[circuit]]></category>
		<category><![CDATA[DC motor]]></category>
		<category><![CDATA[RGB LED]]></category>
		<category><![CDATA[soldering]]></category>

		<guid isPermaLink="false">http://www.theelectronicshobbyist.com/blog/?p=312</guid>
		<description><![CDATA[Solder wires to motor terminals and cover with heat-shrink tubing Using a knife or sharp scissors, puncture a small hole (to fit the motor shaft snugly) on the center of the jar lid Solder motor shaft to jar lid (if necessary use hot glue or super glue, as some surfaces won&#8217;t &#8220;catch&#8221; the solder easily) [...]]]></description>
			<content:encoded><![CDATA[<p></p><ol>
<li><a href="http://www.theelectronicshobbyist.com/blog/wp-content/uploads/2010/07/arduino-rgb-nightlight-schematic.jpg"><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright size-medium wp-image-316" title="arduino-rgb-nightlight-schematic" src="http://www.theelectronicshobbyist.com/blog/wp-content/uploads/2010/07/arduino-rgb-nightlight-schematic-235x300.jpg" alt="Arduino RGB LED night light schematic" width="235" height="300" /></a>Solder <a href="http://www.cutedigi.com/product_info.php?ref=3&amp;products_id=4242&amp;affiliate_banner_id=1" target="_blank">wires</a> to <a href="http://www.theelectronicshobbyist.com/blog/goto/motor" style="" target="_blank" rel="nofollow" onmouseover="self.status='http://www.theelectronicshobbyist.com/blog/goto/motor';return true;" onmouseout="self.status=''">motor</a> terminals and cover with <a href="http://www.avantlink.com/click.php?tt=cl&amp;mi=10609&amp;pw=21273&amp;url=http%3A%2F%2Fwww.jameco.com%2Fwebapp%2Fwcs%2Fstores%2Fservlet%2FProduct_10001_10001_419160_-1" target="_blank">heat-shrink tubing<img style="border: none !important; margin: 0px !important;" src="http://www.avantlink.com/tpv/10609/0/17253/21273/-/cl/image.png" alt="" width="0" height="0" /></a></li>
<li>Using a knife or sharp scissors, puncture a small hole (to fit the motor shaft snugly) on the center of the jar lid</li>
<li>Solder <a href="http://www.avantlink.com/click.php?tt=cl&amp;mi=10609&amp;pw=21273&amp;url=http%3A%2F%2Fwww.jameco.com%2Fwebapp%2Fwcs%2Fstores%2Fservlet%2FProduct_10001_10001_2081895_-1" target="_blank">motor<img style="border: none !important; margin: 0px !important;" src="http://www.avantlink.com/tpv/10609/0/17253/21273/-/cl/image.png" alt="" width="0" height="0" /></a> shaft to jar lid (if necessary use hot glue or super glue, as some surfaces won&#8217;t &#8220;catch&#8221; the solder easily)</li>
<li>Solder the <a href="http://www.cutedigi.com/product_info.php?ref=3&amp;products_id=4212&amp;affiliate_banner_id=1" target="_blank">RGB LED</a> leads to long wires and cover the connections with heat-shrink tubing</li>
<li>Build the circuit on the <a href="http://www.cutedigi.com/product_info.php?ref=3&amp;products_id=4227&amp;affiliate_banner_id=1" target="_blank">mini breadboard</a> using the schematic as your guide</li>
<li>Prepare the paper diffuser (use a hole puncher and punch a few holes to allow some light to shine through) and tape it around the jar lid using mounting tape</li>
<p><span id="more-312"></span><br />
<a href="http://www.theelectronicshobbyist.com/blog/wp-content/uploads/2010/07/arduino-rgb-nightlight-motor-mounting.jpg"><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright size-medium wp-image-314" title="arduino-rgb-nightlight-motor-mounting" src="http://www.theelectronicshobbyist.com/blog/wp-content/uploads/2010/07/arduino-rgb-nightlight-motor-mounting-300x268.jpg" alt="motor leads" width="216" height="193" /></a></p>
<li>Mount the motor to the side of the <a href="http://www.theelectronicshobbyist.com/blog/goto/breadboard" style="" target="_blank" rel="nofollow" onmouseover="self.status='http://www.theelectronicshobbyist.com/blog/goto/breadboard';return true;" onmouseout="self.status=''">breadboard</a> using mounting tape</li>
<li>Tie the LED wires together and secure the wire bundle using a stick as prop (I used a lollipop stick in one of the holes on the breadboard); split the stick tip shaping it as a &#8220;Y&#8221; to help secure the LED wires in place(show finished picture)</li>
</ol>
<p>Check the previous post if you need to see the <a href="http://www.theelectronicshobbyist.com/blog/2010/07/arduino-rgb-led-spinning-night-light/">sketch for the Arduino RGB LED night light</a> again.</p>
<p>You might also enjoy:<ol>
<li><a href='http://www.theelectronicshobbyist.com/blog/arduino-rgb-led-spinning-night-light/' rel='bookmark' title='Arduino RGB LED Spinning Night Light | Part 1'>Arduino RGB LED Spinning Night Light | Part 1</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/arduino-motor-control-spinning-night-light/' rel='bookmark' title='Arduino Motor Control for the Spinning Night Light | Part 3'>Arduino Motor Control for the Spinning Night Light | Part 3</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/arduino-rgb-led-control-spinning-night-light/' rel='bookmark' title='Arduino RGB LED Control for the Spinning Night Light | Part 4'>Arduino RGB LED Control for the Spinning Night Light | Part 4</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/arduino-2-digit-7-segment-display-counter-circuit/' rel='bookmark' title='Arduino 2-Digit 7-Segment Display Counter: Circuit | Part 2'>Arduino 2-Digit 7-Segment Display Counter: Circuit | Part 2</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.theelectronicshobbyist.com/blog/arduino-rgb-led-spinning-night-light-assembly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Arduino RGB LED Spinning Night Light &#124; Part 1</title>
		<link>http://www.theelectronicshobbyist.com/blog/arduino-rgb-led-spinning-night-light/</link>
		<comments>http://www.theelectronicshobbyist.com/blog/arduino-rgb-led-spinning-night-light/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 05:00:36 +0000</pubDate>
		<dc:creator>Natalia</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[DC motor]]></category>
		<category><![CDATA[RGB LED]]></category>
		<category><![CDATA[sketch]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.theelectronicshobbyist.com/blog/?p=296</guid>
		<description><![CDATA[This month&#8217;s project uses the Arduino to control a motor and an RGB LED to create an aquarium style spinning night light. The initial idea was to recycle empty toilet paper tubes to serve as the lampshade, but it turns out the project looks much more attractive and colorful using white paper. (I haven&#8217;t given [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://www.theelectronicshobbyist.com/blog/wp-content/uploads/2010/07/arduino-rgb-nightlight.jpg"><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="size-full wp-image-297 alignright" title="arduino-rgb-nightlight" src="http://www.theelectronicshobbyist.com/blog/wp-content/uploads/2010/07/arduino-rgb-nightlight.jpg" alt="Arduino RGB LED Night Light" width="350" height="175" /></a>This month&#8217;s project uses the <a href="http://www.theelectronicshobbyist.com/blog/goto/uno" style="" target="_blank" rel="nofollow" onmouseover="self.status='http://www.theelectronicshobbyist.com/blog/goto/uno';return true;" onmouseout="self.status=''">Arduino</a> to control a <a href="http://www.theelectronicshobbyist.com/blog/goto/motor" style="" target="_blank" rel="nofollow" onmouseover="self.status='http://www.theelectronicshobbyist.com/blog/goto/motor';return true;" onmouseout="self.status=''">motor</a> and an RGB LED to create an aquarium style spinning night light.</p>
<p>The initial idea was to recycle empty toilet paper tubes to serve as the lampshade, but it turns out the project looks much more attractive and colorful using white paper. (I haven&#8217;t given up on the idea of finding a use for the empty tubes, though. Suggestions are welcome.)</p>
<p>A simple <a href="http://www.avantlink.com/click.php?tt=cl&amp;mi=10609&amp;pw=21273&amp;url=http%3A%2F%2Fwww.jameco.com%2Fwebapp%2Fwcs%2Fstores%2Fservlet%2FProduct_10001_10001_2081895_-1" target="_blank">DC Motor<img style="border: none !important; margin: 0px !important;" src="http://www.avantlink.com/tpv/10609/0/17253/21273/-/cl/image.png" alt="" width="0" height="0" /></a> is used to spin the lamp structure, and a jar lid serves as the base. There is (a lot of) room for improvement in the design of the lamp, but I&#8217;m a computer scientist and wanna-be crafter at best.<br />
<span id="more-296"></span><br />
I intend to revisit these projects in the future, and make them stand alone using smaller Arduino boards and sporting a nicer finish (something worthy of showing guests). For now the purpose of these projects is solely educational (in a microcontroller programming way, not hand crafting).</p>
<p>In the upcoming posts we will explore the assembly of the night light, as well as the circuit and Arduino sketch that make the project work.</p>
<p>Parts list:</p>
<ul>
<li><a href="http://www.cutedigi.com/product_info.php?ref=3&amp;products_id=4221&amp;affiliate_banner_id=1" target="_blank">Arduino Duemilanove</a></li>
<li><a href="http://www.cutedigi.com/product_info.php?ref=3&amp;products_id=4227&amp;affiliate_banner_id=1" target="_blank">Mini Breadboard</a></li>
<li><a href="http://www.avantlink.com/click.php?tt=cl&amp;mi=10609&amp;pw=21273&amp;url=http%3A%2F%2Fwww.jameco.com%2Fwebapp%2Fwcs%2Fstores%2Fservlet%2FProduct_10001_10001_2081895_-1" target="_blank">DC Motor<img style="border: none !important; margin: 0px !important;" src="http://www.avantlink.com/tpv/10609/0/17253/21273/-/cl/image.png" alt="" width="0" height="0" /></a></li>
<li><a href="http://www.cutedigi.com/product_info.php?ref=3&amp;products_id=4212&amp;affiliate_banner_id=1" target="_blank">RGB LED</a></li>
<li><a href="http://www.avantlink.com/click.php?tt=cl&amp;mi=10609&amp;pw=21273&amp;url=http%3A%2F%2Fwww.jameco.com%2Fwebapp%2Fwcs%2Fstores%2Fservlet%2FProduct_10001_10001_36311_-1">1N914 Diode<img style="border: none !important; margin: 0px !important;" src="http://www.avantlink.com/tpv/10609/0/17253/21273/-/cl/image.png" alt="" width="0" height="0" /></a></li>
<li><a href="http://www.avantlink.com/click.php?tt=cl&amp;mi=10609&amp;pw=21273&amp;url=http%3A%2F%2Fwww.jameco.com%2Fwebapp%2Fwcs%2Fstores%2Fservlet%2FProduct_10001_10001_178597_-1">2N3904 Transistor<img style="border: none !important; margin: 0px !important;" src="http://www.avantlink.com/tpv/10609/0/17253/21273/-/cl/image.png" alt="" width="0" height="0" /></a></li>
<li><a href="http://www.cutedigi.com/product_info.php?ref=3&amp;products_id=4373&amp;affiliate_banner_id=1" target="_blank">100 Ohm Resistor</a></li>
<li><a href="http://www.amazon.com/gp/product/B001AMWN1Q?ie=UTF8&amp;tag=Squid744799-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B001AMWN1Q">147 Ohm Resistor</a></li>
<li><a href="http://www.amazon.com/gp/product/B0017KDZ4A?ie=UTF8&amp;tag=Squid744799-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0017KDZ4A">82 Ohm Resistor</a></li>
<li><a href="http://www.avantlink.com/click.php?tt=cl&amp;mi=10609&amp;pw=21273&amp;url=http%3A%2F%2Fwww.jameco.com%2Fwebapp%2Fwcs%2Fstores%2Fservlet%2FProduct_10001_10001_116572_-1">Soldering iron<img style="border: none !important; margin: 0px !important;" src="http://www.avantlink.com/tpv/10609/0/17253/21273/-/cl/image.png" alt="" width="0" height="0" /></a></li>
<li><a href="http://www.avantlink.com/click.php?tt=cl&amp;mi=10609&amp;pw=21273&amp;url=http%3A%2F%2Fwww.jameco.com%2Fwebapp%2Fwcs%2Fstores%2Fservlet%2FProduct_10001_10001_170457_-1">Solder<img style="border: none !important; margin: 0px !important;" src="http://www.avantlink.com/tpv/10609/0/17253/21273/-/cl/image.png" alt="" width="0" height="0" /></a></li>
<li><a href="http://www.avantlink.com/click.php?tt=cl&amp;mi=10609&amp;pw=21273&amp;url=http%3A%2F%2Fwww.jameco.com%2Fwebapp%2Fwcs%2Fstores%2Fservlet%2FProduct_10001_10001_419160_-1">Heat-shrink tubing<img style="border: none !important; margin: 0px !important;" src="http://www.avantlink.com/tpv/10609/0/17253/21273/-/cl/image.png" alt="" width="0" height="0" /></a></li>
<li><a href="http://www.cutedigi.com/product_info.php?ref=3&amp;products_id=4242&amp;affiliate_banner_id=1" target="_blank">Jumper Wires</a> of assorted lengths</li>
<li>White paper</li>
<li>Jar lid</li>
<li>Mounting tape</li>
</ul>
<p>I have recorded a short <a href="http://www.youtube.com/watch?v=zaAh-3RbcuY" target="_blank">video of the Arduino RGB LED Spinning Night Light</a> in action.</p>
<p>And here is the Arduino sketch:</p>
<pre>// www.TheElectronicsHobbyist.com/blog
// Natalia Fargasch Norman
// RGB LED night light using Arduino

// Arduino pins used for motor and LEDs
#define MOTOR 3
#define RED 9
#define GREEN 10
#define BLUE 11

// pins for motor and LEDs are outputs
void setup() {
  pinMode(MOTOR, OUTPUT);
  pinMode(RED, OUTPUT);
  pinMode(GREEN, OUTPUT);
  pinMode(BLUE, OUTPUT);
}

void loop() {
  // set motor speed, between 0 and 255
  analogWrite(MOTOR, 69);

  // fade from aqua to magenta
  for (int i = 0; i < 256; i++) {
    analogWrite(RED, 255-i);
    analogWrite(GREEN, i);
    analogWrite(BLUE, 0);
    delay(50);
  }

  // fade from magenta to aqua
  for (int i = 0; i < 256; i++) {
    analogWrite(RED, i);
    analogWrite(GREEN, 255-i);
    analogWrite(BLUE, 0);
    delay(50);
  }

}</pre>
<p>You might also enjoy:<ol>
<li><a href='http://www.theelectronicshobbyist.com/blog/arduino-rgb-led-control-spinning-night-light/' rel='bookmark' title='Arduino RGB LED Control for the Spinning Night Light | Part 4'>Arduino RGB LED Control for the Spinning Night Light | Part 4</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/arduino-rgb-led-spinning-night-light-assembly/' rel='bookmark' title='Arduino RGB LED Spinning Night Light: Assembly | Part 2'>Arduino RGB LED Spinning Night Light: Assembly | Part 2</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/arduino-motor-control-spinning-night-light/' rel='bookmark' title='Arduino Motor Control for the Spinning Night Light | Part 3'>Arduino Motor Control for the Spinning Night Light | Part 3</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/controlling-a-seven-segment-display-using-arduino-part-4-of-4/' rel='bookmark' title='Controlling a Seven-Segment Display Using Arduino Part 4'>Controlling a Seven-Segment Display Using Arduino Part 4</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.theelectronicshobbyist.com/blog/arduino-rgb-led-spinning-night-light/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: www.theelectronicshobbyist.com @ 2012-02-06 22:36:59 -->
