<?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; Beginner</title>
	<atom:link href="http://www.theelectronicshobbyist.com/blog/category/beginner/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.theelectronicshobbyist.com/blog</link>
	<description>A Passion for Curiosity and Play</description>
	<lastBuildDate>Wed, 04 Aug 2010 09:00:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Arduino Serial Communication</title>
		<link>http://www.theelectronicshobbyist.com/blog/2010/08/arduino-serial-communication/</link>
		<comments>http://www.theelectronicshobbyist.com/blog/2010/08/arduino-serial-communication/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 09:00:06 +0000</pubDate>
		<dc:creator>Natalia</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[serial]]></category>

		<guid isPermaLink="false">http://www.theelectronicshobbyist.com/blog/?p=347</guid>
		<description><![CDATA[Computers can exchange bits of information serially (one after another, in sequence) or in parallel (several at the same time). In applications where it is necessary to have one computer talk to another, the most commonly used communication method is serial. So it is no surprise that serial communication is the method used to send [...]]]></description>
			<content:encoded><![CDATA[<p>Computers can exchange bits of information serially (one after another, in sequence) or in parallel (several at the same time). In applications where it is necessary to have one computer talk to another, the most commonly used communication method is serial.</p>
<p>So it is no surprise that serial communication is the method used to send data between the Arduino board and a computer (or other device). Information is sent to and from the computer and the Arduino by setting a pin high or low. One side sets the pin and the other reads it.</p>
<p>The Arduino Duemilanove has one serial port that communicates on digital pins 0 (RX) and 1 (TX) as well as with the computer via USB. When you use the IDE to Upload your sketches to the Arduino, the bits are transmitted one at a time through the USB cable to the Arduino. The serial connection can also be used in our sketches to send data to the computer and to receive data from the computer via the serial monitor available on the IDE. This proves very useful for debugging your projects, as we will explore in the upcoming posts.<br />
<span id="more-347"></span><br />
The Arduino serial library makes the following functions available for use in your sketches:</p>
<ul>
<li><span style="font-size: small;">begin(): opens serial port and sets the rate for serial data transmission (the RX and TX pins cannot be used for general input and output when the serial port is being used)</span></li>
<li><span style="font-size: small;">end(): disables serial communication (this allows the RX and TX pins to be used for general input and output again)</span></li>
<li><span style="font-size: small;">int available(): gets the number of bytes stored in the serial receive buffer (the buffer holds 128 bytes) that are available for reading from the serial port</span></li>
<li><span style="font-size: small;">int read(): reads incoming serial data</span></li>
<li><span style="font-size: small;">flush(): flushes the serial receive buffer of incoming serial data</span></li>
<li><span style="font-size: small;">print(): prints data to the serial port as human-readable ASCII text</span></li>
<li><span style="font-size: small;">println(): prints data to the serial port as human-readable ASCII text followed by a carriage return character and a newline character</span></li>
<li><span style="font-size: small;">write(): writes binary data to the serial port</span></li>
</ul>


<p>You might also enjoy:<ol><li><a href='http://www.theelectronicshobbyist.com/blog/2010/02/controlling-a-seven-segment-display-using-arduino-part-4-of-4/' rel='bookmark' title='Permanent Link: Controlling a Seven-Segment Display Using Arduino Part 4'>Controlling a Seven-Segment Display Using Arduino Part 4</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/2009/08/pachube/' rel='bookmark' title='Permanent Link: Pachube'>Pachube</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/2010/04/an-arduino-for-any-project/' rel='bookmark' title='Permanent Link: An Arduino for Any Project'>An Arduino for Any Project</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.theelectronicshobbyist.com/blog/2010/08/arduino-serial-communication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Arduino for Any Project</title>
		<link>http://www.theelectronicshobbyist.com/blog/2010/04/an-arduino-for-any-project/</link>
		<comments>http://www.theelectronicshobbyist.com/blog/2010/04/an-arduino-for-any-project/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 09:35:56 +0000</pubDate>
		<dc:creator>Natalia</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Bluetooth]]></category>
		<category><![CDATA[Duemilanove]]></category>
		<category><![CDATA[Lilypad]]></category>
		<category><![CDATA[Mega]]></category>
		<category><![CDATA[Mini]]></category>
		<category><![CDATA[Nano]]></category>

		<guid isPermaLink="false">http://www.theelectronicshobbyist.com/blog/?p=32</guid>
		<description><![CDATA[The Arduino is based on the microcontrollers from Atmel. Here are current Arduinos available (the architecture is open source, and anyone can build their own &#8220;Arduino&#8221; based on the technical specs that are available for download from the official Arduino website). Duemilanove: &#8220;Duemilanove&#8221; means 2009 in Italian and is named after the year of its [...]]]></description>
			<content:encoded><![CDATA[<p>The Arduino is based on the microcontrollers from Atmel. Here are current Arduinos available (the architecture is open source, and anyone can build their own &#8220;Arduino&#8221; based on the technical specs that are available for download from the <a href="http://arduino.cc" target="_blank">official Arduino website</a>).</p>
<ul>
<li><strong><a href="http://www.cutedigi.com/product_info.php?ref=3&amp;products_id=4221&amp;affiliate_banner_id=1" target="_blank">Duemilanove</a>:</strong> &#8220;Duemilanove&#8221; means 2009 in Italian and is named after the year of its release. The <a href="http://www.cutedigi.com/product_info.php?ref=3&amp;products_id=4221&amp;affiliate_banner_id=1" target="_blank">Duemilanove</a> is the latest in a series of USB Arduino boards. It is based on the ATmega328 and has 14 digital input/output pins (of which 6 can be used as PWM outputs) and 6 analog inputs.</li>
<li><strong><a href="http://www.cutedigi.com/product_info.php?ref=3&amp;products_id=4232&amp;affiliate_banner_id=1" target="_blank">Mega</a>:</strong> The <a href="http://www.cutedigi.com/product_info.php?ref=3&amp;products_id=4232&amp;affiliate_banner_id=1" target="_blank">Arduino Mega</a> is based on the ATmega1280. It has 54 digital input/output pins (of which 14 can be used as PWM outputs) and 16 analog inputs.</li>
<p><span id="more-32"></span></p>
<li><strong><a href="http://www.cutedigi.com/product_info.php?ref=3&amp;products_id=4235&amp;affiliate_banner_id=1" target="_blank">Nano</a>:</strong><a href="http://www.cutedigi.com/product_info.php?ref=3&amp;products_id=4235&amp;affiliate_banner_id=1" target="_blank"><img src="http://www.cutedigi.com/images/ARD-NANO1.jpg" border="0" alt="Arduino Nano Ver 3.0" width="104" height="120" align="right" /></a> The <a href="http://www.cutedigi.com/product_info.php?ref=3&amp;products_id=4235&amp;affiliate_banner_id=1" target="_blank">Arduino Nano</a> is a small, breadboard-friendly board based on the ATmega328 (Arduino Nano 3.0) or ATmega168 (Arduino Nano 2.x). It has more or less the same functionality of the Arduino Duemilanove, but in a different package.</li>
<li><strong><a href="http://www.cutedigi.com/product_info.php?ref=3&amp;products_id=4395&amp;affiliate_banner_id=1" target="_blank">Bluetooth</a>:</strong> The <a href="http://www.cutedigi.com/product_info.php?ref=3&amp;products_id=4395&amp;affiliate_banner_id=1" target="_blank">Arduino BT</a> is an Arduino board with built-in bluetooth module, allowing for wireless communication. It features a surface-mounted ATmega168.</li>
<li><strong><a href="http://www.cutedigi.com/product_info.php?ref=3&amp;products_id=4233&amp;affiliate_banner_id=1" target="_blank">Lilypad</a>:</strong> A stripped-down, circular Arduino board designed for stitching into clothing and other fabric/flexible applications. It can be sewn to fabric with conductive thread. <a href="http://www.cutedigi.com/product_info.php?ref=3&amp;products_id=4233&amp;affiliate_banner_id=1" target="_blank">Lilypads</a> are available on versions based on the ATmega168 or the ATmega328.</li>
<li><strong><a href="http://www.cutedigi.com/product_info.php?ref=3&amp;products_id=4234&amp;affiliate_banner_id=1" target="_blank">Mini</a>:</strong><a href="http://www.cutedigi.com/product_info.php?ref=3&amp;products_id=4234&amp;affiliate_banner_id=1" target="_blank"><img src="http://www.cutedigi.com/images/Arduino-Stamp.jpg" border="0" alt="Arduino Stamp Mini" width="130" height="130" align="right" /></a> The <a href="http://www.cutedigi.com/product_info.php?ref=3&amp;products_id=4234&amp;affiliate_banner_id=1" target="_blank">Arduino Mini</a> is a small microcontroller board based on the ATmega168 (surface-mounted), intended for use on breadboards or when space is at a premium.</li>
</ul>


<p>You might also enjoy:<ol><li><a href='http://www.theelectronicshobbyist.com/blog/2010/05/arduino-nano-an-account-of-coolness-in-4-links/' rel='bookmark' title='Permanent Link: Arduino Nano: an Account of Coolness in 4 Links'>Arduino Nano: an Account of Coolness in 4 Links</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/2010/05/arduino-mini-an-account-of-coolness-in-4-links/' rel='bookmark' title='Permanent Link: Arduino Mini: an Account of Coolness in 4 Links'>Arduino Mini: an Account of Coolness in 4 Links</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/2010/08/arduino-serial-communication/' rel='bookmark' title='Permanent Link: Arduino Serial Communication'>Arduino Serial Communication</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/2010/05/arduino-mega-an-account-of-coolness-in-4-links/' rel='bookmark' title='Permanent Link: Arduino Mega: an Account of Coolness in 4 Links'>Arduino Mega: an Account of Coolness in 4 Links</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.theelectronicshobbyist.com/blog/2010/04/an-arduino-for-any-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basic Hobby Electronics Vocabulary Part 4 of 4 (S-V)</title>
		<link>http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-4-of-4-s-v/</link>
		<comments>http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-4-of-4-s-v/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 15:00:00 +0000</pubDate>
		<dc:creator>Natalia</dc:creator>
				<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Electronics Hobby]]></category>
		<category><![CDATA[transistor]]></category>
		<category><![CDATA[vocabulary]]></category>

		<guid isPermaLink="false">http://www.theelectronicshobbyist.com/blog/?p=15</guid>
		<description><![CDATA[Schematic: A diagram of an electrical circuit that uses standardized symbols for the components. Semiconductor: A material of electrical resistance between that of a conductor and an insulator. It is used to construct diodes, transistors, and integrated circuits. Solder: A tin-lead alloy that becomes liquid when heated to above 360 degrees. It has low resistance, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Schematic:</strong> A diagram of an electrical circuit that uses standardized symbols for the components.</p>
<p><strong>Semiconductor:</strong> A material of electrical resistance between that of a conductor and an insulator. It is used to construct diodes, transistors, and integrated circuits.</p>
<div class="separator" style="clear: both; text-align: center;"><a style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;" href="http://www.theelectronicshobbyist.com/blog/uploaded_images/solder-702691.jpg"><img src="http://www.theelectronicshobbyist.com/blog/uploaded_images/solder-702689.jpg" border="0" alt="" /></a></div>
<p><a href="http://www.theelectronicshobbyist.com/tool/soldering-tools.shtml" target="_blank"><strong>Solder:</strong></a> A tin-lead alloy that becomes liquid when heated to above 360 degrees. It has low resistance, like other metals, and provides a strong mounting.</p>
<p><strong>Switch:</strong> A device used to connect or disconnect the wires in an electric circuit, turning it on or off.</p>
<div class="separator" style="clear: both; text-align: center;"><a style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;" href="http://www.theelectronicshobbyist.com/blog/uploaded_images/transistor-758735.jpg"><img src="http://www.theelectronicshobbyist.com/blog/uploaded_images/transistor-758734.jpg" border="0" alt="" /></a></div>
<p><strong>Transistor:</strong> A three-terminal, solid-state electronic device designed to amplify, oscillate, or switch the flow of current between two terminals.</p>
<p><strong>Voltage:</strong> The measure of difference of electric potential across a material or between two points in a circuit.</p>
<p><strong>Volts (V):</strong> The unit of measure for voltage.</p>


<p>You might also enjoy:<ol><li><a href='http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-3-of-4-i-r/' rel='bookmark' title='Permanent Link: Basic Hobby Electronics Vocabulary Part 3 of 4 (I-R)'>Basic Hobby Electronics Vocabulary Part 3 of 4 (I-R)</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-1-of-4-a-c/' rel='bookmark' title='Permanent Link: Basic Hobby Electronics Vocabulary Part 1 of 4 (A-C)'>Basic Hobby Electronics Vocabulary Part 1 of 4 (A-C)</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-2-of-4-d-g/' rel='bookmark' title='Permanent Link: Basic Hobby Electronics Vocabulary Part 2 of 4 (D-G)'>Basic Hobby Electronics Vocabulary Part 2 of 4 (D-G)</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/2009/11/starting-out-on-an-electronics-hobby-resources/' rel='bookmark' title='Permanent Link: Starting Out on an Electronics Hobby &#8211; Resources'>Starting Out on an Electronics Hobby &#8211; Resources</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-4-of-4-s-v/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basic Hobby Electronics Vocabulary Part 3 of 4 (I-R)</title>
		<link>http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-3-of-4-i-r/</link>
		<comments>http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-3-of-4-i-r/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 15:00:00 +0000</pubDate>
		<dc:creator>Natalia</dc:creator>
				<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Electronics Hobby]]></category>
		<category><![CDATA[resistor]]></category>
		<category><![CDATA[vocabulary]]></category>

		<guid isPermaLink="false">http://www.theelectronicshobbyist.com/blog/?p=14</guid>
		<description><![CDATA[Insulator: A material that has high electrical resistance and is therefore a poor conductor of electricity. Integrated Circuit (IC): A type of digital circuit in which transistors, diodes, resistors and capacitors are constructed on a semiconductor base. Light Emitting Diode (LED): A type of diode that generates light when current flows through it. Ohm&#8217;s Law: [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Insulator:</strong> A material that has high electrical resistance and is therefore a poor conductor of electricity.</p>
<p><strong>Integrated Circuit (IC):</strong> A type of digital circuit in which transistors, diodes, resistors and capacitors are constructed on a semiconductor base.</p>
<p><strong>Light Emitting Diode (LED):</strong> A type of diode that generates light when current flows through it.</p>
<p><strong>Ohm&#8217;s Law:</strong> The relationship between voltage, current and resistance.</p>
<p><strong>Ohm (Ω):</strong> The unit of measure for resistance.</p>
<p><strong>Printed Circuit Board (PCB):</strong> A board in which components are connected using a thin coat of conductive material &#8220;printed&#8221; on the board instead of wires. It is used for mounting electrical components.</p>
<p><strong>Resistance:</strong> The electrical friction between an electric current and the material it is flowing through that causes electricity to be dissipated as heat.</p>
<div class="separator" style="clear: both; text-align: center;"><a style="clear: left; float: right; margin-bottom: 1em; margin-right: 1em;" href="http://www.theelectronicshobbyist.com/blog/uploaded_images/resistor-742196.png"><img src="http://www.theelectronicshobbyist.com/blog/uploaded_images/resistor-742135.png" border="0" alt="" /></a></div>
<p><strong>Resistor:</strong> An electrical component used to introduce resistance into a circuit.</p>


<p>You might also enjoy:<ol><li><a href='http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-4-of-4-s-v/' rel='bookmark' title='Permanent Link: Basic Hobby Electronics Vocabulary Part 4 of 4 (S-V)'>Basic Hobby Electronics Vocabulary Part 4 of 4 (S-V)</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-1-of-4-a-c/' rel='bookmark' title='Permanent Link: Basic Hobby Electronics Vocabulary Part 1 of 4 (A-C)'>Basic Hobby Electronics Vocabulary Part 1 of 4 (A-C)</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-2-of-4-d-g/' rel='bookmark' title='Permanent Link: Basic Hobby Electronics Vocabulary Part 2 of 4 (D-G)'>Basic Hobby Electronics Vocabulary Part 2 of 4 (D-G)</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/2009/11/starting-out-on-an-electronics-hobby-tools/' rel='bookmark' title='Permanent Link: Starting Out on an Electronics Hobby &#8211; Tools'>Starting Out on an Electronics Hobby &#8211; Tools</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-3-of-4-i-r/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basic Hobby Electronics Vocabulary Part 2 of 4 (D-G)</title>
		<link>http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-2-of-4-d-g/</link>
		<comments>http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-2-of-4-d-g/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 15:00:00 +0000</pubDate>
		<dc:creator>Natalia</dc:creator>
				<category><![CDATA[Beginner]]></category>
		<category><![CDATA[capacitor]]></category>
		<category><![CDATA[Electronics Hobby]]></category>
		<category><![CDATA[vocabulary]]></category>

		<guid isPermaLink="false">http://www.theelectronicshobbyist.com/blog/?p=13</guid>
		<description><![CDATA[Digital Circuit: A circuit in which inputs and outputs have only two possible states: low (0) or high (1). Diode: A two-terminal electronic device that allows current to flow in only one direction. Direct Current (DC): Current that flows across a material in one direction only. Disc Capacitor: A type of capacitor that has low [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Digital Circuit:</strong> A circuit in which inputs and outputs have only two possible states: low (0) or high (1).</p>
<p><strong>Diode:</strong> A two-terminal electronic device that allows current to flow in only one direction.</p>
<p><strong>Direct Current (DC):</strong> Current that flows across a material in one direction only.</p>
<div class="separator" style="clear: both; text-align: center;"><a style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;" href="http://www.theelectronicshobbyist.com/blog/uploaded_images/capacitor-759560.gif"><img src="http://www.theelectronicshobbyist.com/blog/uploaded_images/capacitor-759559.gif" border="0" alt="" /></a></div>
<p><strong>Disc Capacitor:</strong> A type of capacitor that has low capacitance and is used mostly in high frequency circuits. Disc capacitors are not polarized.</p>
<div class="separator" style="clear: both; text-align: center;"><a style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;" href="http://www.theelectronicshobbyist.com/blog/uploaded_images/capacitor-768584.jpg"><img src="http://www.theelectronicshobbyist.com/blog/uploaded_images/capacitor-768582.jpg" border="0" alt="" /></a></div>
<p><strong>Electrolytic Capacitor:</strong> A type of capacitor that has high capacitance and is used mostly in low frequency circuits. Electrolytic capacitors are polarized.</p>
<p><strong>Electronics:</strong> The science and technology concerned with and based on electricity and its applications.</p>
<p><strong>Farad (F):</strong> The unit of measure for capacitance.</p>
<p><strong>Ground:</strong> A common name for the reference point in an electrical circuit at which the measured voltage is taken to be zero.</p>


<p>You might also enjoy:<ol><li><a href='http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-3-of-4-i-r/' rel='bookmark' title='Permanent Link: Basic Hobby Electronics Vocabulary Part 3 of 4 (I-R)'>Basic Hobby Electronics Vocabulary Part 3 of 4 (I-R)</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-1-of-4-a-c/' rel='bookmark' title='Permanent Link: Basic Hobby Electronics Vocabulary Part 1 of 4 (A-C)'>Basic Hobby Electronics Vocabulary Part 1 of 4 (A-C)</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-4-of-4-s-v/' rel='bookmark' title='Permanent Link: Basic Hobby Electronics Vocabulary Part 4 of 4 (S-V)'>Basic Hobby Electronics Vocabulary Part 4 of 4 (S-V)</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/2009/11/starting-out-on-an-electronics-hobby-tools/' rel='bookmark' title='Permanent Link: Starting Out on an Electronics Hobby &#8211; Tools'>Starting Out on an Electronics Hobby &#8211; Tools</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-2-of-4-d-g/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basic Hobby Electronics Vocabulary Part 1 of 4 (A-C)</title>
		<link>http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-1-of-4-a-c/</link>
		<comments>http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-1-of-4-a-c/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 15:00:00 +0000</pubDate>
		<dc:creator>Natalia</dc:creator>
				<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Electronics Hobby]]></category>
		<category><![CDATA[vocabulary]]></category>

		<guid isPermaLink="false">http://www.theelectronicshobbyist.com/blog/?p=12</guid>
		<description><![CDATA[If you&#8217;re a beginner to hobby electronics, here is a short list of the most basic terms you will encounter as you venture into your electronics hobby. Alternating Current (AC): Current that is periodically reversing its direction of flow. Ampere (A): The unit of measure for electric current. Commonly shortened to &#8220;amp&#8221;. Battery: A device [...]]]></description>
			<content:encoded><![CDATA[<div class="separator" style="clear: both; text-align: left;">If you&#8217;re a beginner to hobby electronics, here is a short list of the most basic terms you will encounter as you venture into your electronics hobby.</div>
<p><strong>Alternating Current (AC):</strong> Current that is periodically reversing its direction of flow.</p>
<p><strong>Ampere (A):</strong> The unit of measure for electric current. Commonly shortened to &#8220;amp&#8221;.</p>
<div class="separator" style="clear: both; text-align: center;"><a style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;" href="http://www.theelectronicshobbyist.com/blog/uploaded_images/battery-778525.jpg"><img src="http://www.theelectronicshobbyist.com/blog/uploaded_images/battery-778523.jpg" border="0" alt="battery" /></a></div>
<p><strong>Battery:</strong> A device which uses a chemical reaction to convert chemical energy directly into electrical energy.</p>
<p><strong>Capacitance:</strong> A measure of the electric charge that can be stored on a conductor; the ability of such conductors to store electric charge.</p>
<p><strong>Capacitor:</strong> An electrical component that introduces capacitance in electric circuits.</p>
<p><strong>Conductor:</strong> A material that has low electrical resistance and can therefore efficiently allow electrical current to flow through it.</p>
<p><strong>Current:</strong> A measure of the flow of electric charge passing any point of a wire per unit of time.</p>


<p>You might also enjoy:<ol><li><a href='http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-3-of-4-i-r/' rel='bookmark' title='Permanent Link: Basic Hobby Electronics Vocabulary Part 3 of 4 (I-R)'>Basic Hobby Electronics Vocabulary Part 3 of 4 (I-R)</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-4-of-4-s-v/' rel='bookmark' title='Permanent Link: Basic Hobby Electronics Vocabulary Part 4 of 4 (S-V)'>Basic Hobby Electronics Vocabulary Part 4 of 4 (S-V)</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-2-of-4-d-g/' rel='bookmark' title='Permanent Link: Basic Hobby Electronics Vocabulary Part 2 of 4 (D-G)'>Basic Hobby Electronics Vocabulary Part 2 of 4 (D-G)</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/2009/11/starting-out-on-an-electronics-hobby-tools/' rel='bookmark' title='Permanent Link: Starting Out on an Electronics Hobby &#8211; Tools'>Starting Out on an Electronics Hobby &#8211; Tools</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-1-of-4-a-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starting Out on an Electronics Hobby &#8211; Resources</title>
		<link>http://www.theelectronicshobbyist.com/blog/2009/11/starting-out-on-an-electronics-hobby-resources/</link>
		<comments>http://www.theelectronicshobbyist.com/blog/2009/11/starting-out-on-an-electronics-hobby-resources/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 03:13:00 +0000</pubDate>
		<dc:creator>Natalia</dc:creator>
				<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Electronics Hobby]]></category>
		<category><![CDATA[magazines]]></category>
		<category><![CDATA[supplies]]></category>

		<guid isPermaLink="false">http://www.theelectronicshobbyist.com/blog/?p=9</guid>
		<description><![CDATA[Surround yourself with all things electronics: Books: hobby electronics books on Amazon.com Magazines: MAKE Magazine Nuts and Volts Everyday Practical Electronics Circuit Cellar Read up on electronics online: electronics2000.co.uk Hobby Projects Hobby DIY Garage Find good sources of electronics parts and components: There are plenty of reliable electronics supplies stores online such as Parts Express, [...]]]></description>
			<content:encoded><![CDATA[<p>Surround yourself with all things electronics:</p>
<p>Books: <a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&amp;location=http%3A%2F%2Fwww.amazon.com%2Fs%3Fie%3DUTF8%26redirect%3Dtrue%26ref%255F%3Dsr%255Fnr%255Fi%255F0%26keywords%3Dhobby%2520electronics%26qid%3D1256092030%26rh%3Di%253Astripbooks%252Ck%253Ahobby%2520electronics&amp;tag=mpu-proj-20&amp;linkCode=ur2&amp;camp=1789&amp;creative=390957">hobby electronics books on Amazon.com</a><img style="margin: 0px; border: medium none;" src="https://www.assoc-amazon.com/e/ir?t=mpu-proj-20&amp;l=ur2&amp;o=1" border="0" alt="" width="1" height="1" /></p>
<p>Magazines:</p>
<ul>
<li><a href="http://www.amazon.com/gp/product/B0007RNI5K?ie=UTF8&amp;tag=mpu-proj-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0007RNI5K" target="_blank">MAKE Magazine</a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=mpu-proj-20&amp;l=as2&amp;o=1&amp;a=B0007RNI5K" border="0" alt="" width="1" height="1" /></li>
<li><a href="http://www.nutsvolts.com/" target="_blank">Nuts and Volts</a></li>
<li><a href="http://www.amazon.com/gp/product/B0000DBJF0?ie=UTF8&amp;tag=mpu-proj-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0000DBJF0" target="_blank">Everyday Practical Electronics</a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=mpu-proj-20&amp;l=as2&amp;o=1&amp;a=B0000DBJF0" border="0" alt="" width="1" height="1" /></li>
<li><a href="http://www.amazon.com/gp/product/B00006K8WS?ie=UTF8&amp;tag=mpu-proj-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B00006K8WS" target="_blank">Circuit Cellar</a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=mpu-proj-20&amp;l=as2&amp;o=1&amp;a=B00006K8WS" border="0" alt="" width="1" height="1" /></li>
</ul>
<p>Read up on electronics online:</p>
<ul>
<li><a href="http://www.electronics2000.co.uk/beginners-guide/">electronics2000.co.uk</a></li>
<li><a href="http://www.hobbyprojects.com/">Hobby Projects</a></li>
<li><a href="http://www.dapj.net/hobby/?page_id=157">Hobby DIY Garage</a></li>
</ul>
<p>Find good sources of electronics parts and components:</p>
<p>There are plenty of reliable electronics supplies stores online such as <a onmouseover="window.status='http://www.parts-express.com';return true;" onmouseout="window.status=' ';return true;" href="http://www.anrdoezrs.net/click-3525855-10572098" target="_blank">Parts Express</a><img src="http://www.awltovhc.com/image-3525855-10572098" border="0" alt="" width="1" height="1" />, <a href="http://www.avantlink.com/click.php?tt=ml&amp;ti=24089&amp;pw=21273" target="_blank">Jameco Electronics<img style="border: 0px;" src="http://www.avantlink.com/tpv/10609/24089/17253/21273/-/ml/image.png" alt="" width="0" height="0" /></a> and <a href="https://www.mywebetools.com/little/redir.php?id=1016_1" target="_blank">Little Bird Electronics</a>. Also check out local junk yards and flea markets, and last but not the least, <a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?icep_ff3=1&amp;pub=5574881760&amp;toolid=10001&amp;campid=5336495182&amp;customid=&amp;ipn=psmain&amp;icep_vectorid=229466&amp;kwid=902099&amp;mtid=824&amp;kw=lg" target="_blank">ebay</a><img style="border: 0; margin: 0; padding: 0; text-decoration: none;" src="http://rover.ebay.com/roverimp/1/711-53200-19255-0/1?ff3=1&amp;pub=5574881760&amp;toolid=10001&amp;campid=5336495182&amp;customid=&amp;mpt=[CACHEBUSTER]" alt="" />.</p>


<p>You might also enjoy:<ol><li><a href='http://www.theelectronicshobbyist.com/blog/2009/11/starting-out-on-an-electronics-hobby-tools/' rel='bookmark' title='Permanent Link: Starting Out on an Electronics Hobby &#8211; Tools'>Starting Out on an Electronics Hobby &#8211; Tools</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-1-of-4-a-c/' rel='bookmark' title='Permanent Link: Basic Hobby Electronics Vocabulary Part 1 of 4 (A-C)'>Basic Hobby Electronics Vocabulary Part 1 of 4 (A-C)</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-3-of-4-i-r/' rel='bookmark' title='Permanent Link: Basic Hobby Electronics Vocabulary Part 3 of 4 (I-R)'>Basic Hobby Electronics Vocabulary Part 3 of 4 (I-R)</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-4-of-4-s-v/' rel='bookmark' title='Permanent Link: Basic Hobby Electronics Vocabulary Part 4 of 4 (S-V)'>Basic Hobby Electronics Vocabulary Part 4 of 4 (S-V)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.theelectronicshobbyist.com/blog/2009/11/starting-out-on-an-electronics-hobby-resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starting Out on an Electronics Hobby &#8211; Tools</title>
		<link>http://www.theelectronicshobbyist.com/blog/2009/11/starting-out-on-an-electronics-hobby-tools/</link>
		<comments>http://www.theelectronicshobbyist.com/blog/2009/11/starting-out-on-an-electronics-hobby-tools/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 20:40:00 +0000</pubDate>
		<dc:creator>Natalia</dc:creator>
				<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Electronics Hobby]]></category>
		<category><![CDATA[soldering]]></category>

		<guid isPermaLink="false">http://www.theelectronicshobbyist.com/blog/?p=8</guid>
		<description><![CDATA[Whether your interest in an electronics hobby stems from the desire to build your own gadgets or to modify existing electronics devices so they perform better – or at least differently – it is important that you take the best approach possible in order to get the most enjoyment from your hobby. When you are [...]]]></description>
			<content:encoded><![CDATA[<p>Whether your interest in an electronics hobby stems from the desire to build your own gadgets or to modify existing electronics devices so they perform better – or at least differently – it is important that you take the best approach possible in order to get the most enjoyment from your hobby.</p>
<p>When you are first starting out you should put together a kit of essential tools. A simple kit should have the following set of basic, good quality tools:<a href="http://www.theelectronicshobbyist.com/tool/soldering-tools.shtml"><img class="alignright" src="http://www.theelectronicshobbyist.com/prod_images/soldering_station.jpg" alt="Soldering station" width="210" height="115" /></a></p>
<ul>
<li><a href="http://www.theelectronicshobbyist.com/tool/hand-tools.shtml" target="_blank">Wire cutter and stripper </a></li>
<li><a href="http://www.theelectronicshobbyist.com/tool/soldering-tools.shtml" target="_blank">Soldering iron and solder </a></li>
<li>Soldering iron stand (optional)</li>
<li><a href="http://www.theelectronicshobbyist.com/tool/soldering-tools.shtml" target="_blank">Desoldering tool</a> (optional)</li>
<li><a href="http://www.theelectronicshobbyist.com/tool/hand-tools.shtml" target="_blank">Pair of small pliers – long nose pliers<br />
</a></li>
<li><a href="http://www.theelectronicshobbyist.com/tool/hand-tools.shtml" target="_blank">Screwdrivers </a>– small straight type and medium cross point type</li>
<li>Test equipment – multimeter (optional)</li>
</ul>
<p>If possible you should get a wooden board/bench to use as a dedicated work area.</p>
<p>For introductory courses on electronics as a hobby checkout the website below:<br />
<a href="http://www.hobby-electronics.info/links/courses.php" target="_blank">http://www.hobby-electronics.info/links/courses.php</a></p>


<p>You might also enjoy:<ol><li><a href='http://www.theelectronicshobbyist.com/blog/2009/11/starting-out-on-an-electronics-hobby-resources/' rel='bookmark' title='Permanent Link: Starting Out on an Electronics Hobby &#8211; Resources'>Starting Out on an Electronics Hobby &#8211; Resources</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-3-of-4-i-r/' rel='bookmark' title='Permanent Link: Basic Hobby Electronics Vocabulary Part 3 of 4 (I-R)'>Basic Hobby Electronics Vocabulary Part 3 of 4 (I-R)</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-1-of-4-a-c/' rel='bookmark' title='Permanent Link: Basic Hobby Electronics Vocabulary Part 1 of 4 (A-C)'>Basic Hobby Electronics Vocabulary Part 1 of 4 (A-C)</a></li>
<li><a href='http://www.theelectronicshobbyist.com/blog/2010/01/basic-hobby-electronics-vocabulary-part-2-of-4-d-g/' rel='bookmark' title='Permanent Link: Basic Hobby Electronics Vocabulary Part 2 of 4 (D-G)'>Basic Hobby Electronics Vocabulary Part 2 of 4 (D-G)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.theelectronicshobbyist.com/blog/2009/11/starting-out-on-an-electronics-hobby-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
