<?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>Electronics Online &#187; Tutorials</title>
	<atom:link href="http://electropart.info/category/tutorials/feed" rel="self" type="application/rss+xml" />
	<link>http://electropart.info</link>
	<description>Electronics lesson: electronic parts, electronic components, electronic projects, circuit diagram and more</description>
	<lastBuildDate>Thu, 17 May 2012 12:57:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>How to use an LCD display with only three lines I / O of the HC908</title>
		<link>http://electropart.info/components/how-to-use-an-lcd-display-with-only-three-lines-i-o-of-the-hc908.html</link>
		<comments>http://electropart.info/components/how-to-use-an-lcd-display-with-only-three-lines-i-o-of-the-hc908.html#comments</comments>
		<pubDate>Thu, 17 May 2012 12:57:50 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Components]]></category>
		<category><![CDATA[Schematic Diagrams]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[cd4094]]></category>
		<category><![CDATA[control lcd display]]></category>
		<category><![CDATA[digital system]]></category>
		<category><![CDATA[HC908]]></category>
		<category><![CDATA[HC908QY4]]></category>
		<category><![CDATA[How to use an LCD display]]></category>
		<category><![CDATA[lcd]]></category>
		<category><![CDATA[lcd commands]]></category>
		<category><![CDATA[LCD display with only three lines I / O]]></category>
		<category><![CDATA[microcontroller]]></category>
		<category><![CDATA[save pin lcd]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=6228</guid>
		<description><![CDATA[Consider the circuit, HC908QY4 is the heart of all. It uses a pin PTB0, PTB1 and PTB2 to control and display the text on the LCD. This leads to (shift regiter &#8211; serial to parallel converter) CD4094 that we will provide the data bus to LCD display. In the CD4094 data are synchronized on the [...]]]></description>
			<content:encoded><![CDATA[<p>Consider the circuit, HC908QY4 is the heart of all. It uses a pin PTB0, PTB1 and PTB2 to control and display the text on the LCD. This leads to (shift regiter &#8211; serial to parallel converter) CD4094 that we will provide the data bus to LCD display.</p>
<p><a href="http://electropart.info/wp-content/uploads/2012/05/Schematic-of-the-circuit.jpg"><img class="aligncenter size-medium wp-image-6230" title="How to use an LCD display with only three lines I / O " src="http://electropart.info/wp-content/uploads/2012/05/Schematic-of-the-circuit-300x178.jpg" alt="Schematic of the circuit" width="300" height="178" /></a>In the CD4094 data are synchronized on the rising edge and the LCD display will take on the falling edge shows us that this signal can be shared.</p>
<p><span id="more-6228"></span>Well, then at the rising edge CD4094 transfers the data of the new byte out and fall on the side of the LCD display reads. Keep in mind that this method can not read LCD information display.</p>
<p>Now comes the hard part: How to separate text commands. LCD has a pin for this: RS pin. When this command for 0 accepted, as accepted in a text (ASCII characters). How do you solve this?</p>
<p>Before sending a character to initialize a timer on CD4094 500uSec. The resistor R1 will load capacitor C5. Then send the character to the CD4094 as quickly as possible. Thus, the capacitor simply does not have enough time to discharge. The LCD display will accept it as text. In order to command is the same, only in reverse. The capacitor has to be discharge.</p>
<p>Emitter follower T1 formed to protect the network R / C. The reason for this is that the LCD RS input is a TTL input signal and we put it to work quite well.</p>
<p><strong>Program C Language</strong></p>
<pre>#include &lt;hidef.h&gt;
#include "derivative.h"

#define LINE1    0x80
#define LINE2    0xC0

#define DTASHT   0x01     // PTA0
#define CLKSHT   0x02     // PTA1
#define STBSHT   0x04     // PTA2

#define CTRL     1
#define DATA     0

void Shift(char, char);
void Delay(int);
void Write(char, char*);
void Init_Dsp(void);

void main(void) {

CONFIG1 = 0x01;
CONFIG2 = 0x00;

DDRA    = 0x07;
PTA     = 0x00;

Init_Dsp();

for(;;) {
Init_Dsp();
Write(LINE1,"  Hola Mundo    ");
}
}

//=====================================

void Init_Dsp(void) {
PTA |= CLKSHT;
Shift(CTRL,0x06);
Shift(CTRL,0x0E);
Shift(CTRL,0x38);
Shift(CTRL,0x80);
Shift(CTRL,0x0C);     // Cursor off
Shift(CTRL,0x01);     // Clear Display
}

void Write(char pos, char *text) {
Shift(CTRL,pos);
while(*text) Shift(DATA,*text++);
}

void Shift(char donde, char dato) {
int i;

for(i=0; i&lt;8; i++){
if(dato &amp; 0x80) PTA |=  DTASHT;
else            PTA &amp;= ~DTASHT;

if(donde) {
PTA &amp;= ~CLKSHT;
Delay(200);
PTA |=  CLKSHT;
}
else {
PTA &amp;= ~CLKSHT;
PTA |=  CLKSHT;
}
dato &lt;&lt;= 1;
}
PTA |=  STBSHT;
PTA &amp;= ~STBSHT;
if(donde) Delay(2000);
}

void Delay(int time) {
for(; time&gt;0; time--);
}</pre>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/computer-introduction/computer-graphics/computer-video-display-technologies.html" rel="bookmark">Computer Video Display Technologies</a></strong> <br />Even though computer display technology is essential with a Personal computers user interface like the mouse and also keyboard, the video display is the latecomer on to computing. Just before Cathode ray tube (CRT) monitors got into standard use, the ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/computer-introduction/computer-data/computer-data.html" rel="bookmark">Computer Data</a></strong> <br />About data Our PC's are data processors. PC's function is simple: to process data, and the processing is done electronically inside the CPU and between the other components. That sounds simple, but what are data, and how are they processed ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/oled-displays-with-a-100-thousand-hours-lifetime.html" rel="bookmark">OLED displays with a 100 thousand hours lifetime</a></strong> <br />Based on organic materials, OLED displays have become an integral part of mobile phones and smartphones. Now Electronic Assembly released a series of OLED displays for use in industrial applications. Nine models are extremely high contrast ratio of 2,000:1, achieved ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/electronics-articles/the-oscilloscope.html" rel="bookmark">The oscilloscope</a></strong> <br />The oscilloscope is a measuring instrument widely used in electronics. It provides a measure of signal in the time domain. Using the probes you can view the signal at a point in a circuit. Attention, "all that is observed is ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/computer-introduction/computer-system-board/the-computer-start-up-process.html" rel="bookmark">The Computer Start-Up Process</a></strong> <br />When you turn power on, several things happen in the PC: You hear the fan motor starting. There are one or more cooling fans in the PC. They produce a whirring sound. After a few seconds, text starts to scroll ...<br /><br /></div></div>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/components/how-to-use-an-lcd-display-with-only-three-lines-i-o-of-the-hc908.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DIY : VGA to MAC connector</title>
		<link>http://electropart.info/schematic-diagrams/diy-vga-to-mac-connector.html</link>
		<comments>http://electropart.info/schematic-diagrams/diy-vga-to-mac-connector.html#comments</comments>
		<pubDate>Sat, 01 Oct 2011 04:15:29 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Schematic Diagrams]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[mac vga adapter]]></category>
		<category><![CDATA[MAC VGA connector]]></category>
		<category><![CDATA[mac vga converter]]></category>
		<category><![CDATA[vga adapter for mac]]></category>
		<category><![CDATA[VGA to MAC connector]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=1207</guid>
		<description><![CDATA[Maybe one of you has a problem with a faulty monitor your mac and want to replace with a regular PC monitor. But you realize that MAC VGA connector is different. Do you want to connect a traditional PC monitor on the VGA output of the MAC (Apple)? Yes you can. It is not the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://electropart.info/schematic-diagrams/diy-vga-to-mac-connector.html/attachment/mac-to-vga-connector" rel="attachment wp-att-1208"><img class="aligncenter size-medium wp-image-1208" title="MAC to VGA connector" src="http://electropart.info/wp-content/uploads/2011/10/MAC-to-VGA-connector-300x123.jpg" alt="MAC to VGA connector" width="300" height="123" /></a>Maybe one of you has a problem with a faulty monitor your mac and want to replace with a regular PC monitor. But you realize that MAC VGA connector is different.</p>
<p><span id="more-1207"></span>Do you want to connect a traditional PC monitor on the VGA output of the MAC (Apple)? Yes you can. It is not the same connector, but this can be done with simple adaptation. No need to add the electronic components to this MAC VGA adapter. It&#8217;s just changing the connection between the cable and connectors.</p>
<p>The two connectors are D-Sub 15 points, but the next type of monitor is high density, with three rows of five points instead of two rows of eight and seven points for South-D 15 classic. Note that the vertical sync terminal is not used VertSync side monitor, only the horizontal sync HorzSync terminal is used. The latter receives the composite sync C. Sync from the MAC. The rest of the wiring does nothing special: the three terminals of the component video RGB (Red-Green-Blue, RGB for Red-Green-Blue) are in direct correspondence with their respective mass. Don&#8217;t know what the limits are Idx.</p>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/pcb-screw-terminal.html" rel="bookmark">PCB Screw Terminal</a></strong> <br />If you are an electronic hobbyst, you are of course very familiar with this part. This part usually used on PCB, to make the circuit "portable", easy connect and disconnect to another circuit modul safely without soldering the connector. A ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/computer-introduction/computer-graphics/computer-video-display-technologies.html" rel="bookmark">Computer Video Display Technologies</a></strong> <br />Even though computer display technology is essential with a Personal computers user interface like the mouse and also keyboard, the video display is the latecomer on to computing. Just before Cathode ray tube (CRT) monitors got into standard use, the ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/computer-introduction/computer-system-board/introduction-to-the-computer-busses.html" rel="bookmark">Introduction to the Computer Busses</a></strong> <br />The PC receives and sends its data from and to busses. They can be divided into: The system bus, which connects the CPU with RAM I/O busses, which connect the CPU with other components. The point is, that the system ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/electronic-temperature-on-ds-18b20.html" rel="bookmark">Electronic temperature on DS-18B20</a></strong> <br />Electronic thermometer will allow you to monitor the temperature of various objects or environments in which sensors are placed, and visually monitor the developments, as well as to control the temperature in the normal location, alerting you to an acoustic ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/assembly-instructions-thermometer-ds-18b20.html" rel="bookmark">Assembly instructions thermometer DS-18B20</a></strong> <br />Instructions for self-assembly of an adapter for an electronic thermometer in the DS-18B20. In accordance with the scheme presented in this page Electronic temperature on DS-18B20. Figure 1. Install diode U2 (1N5817) Figure 2. Install diode U4 (1N5817) Figure 3. ...<br /><br /></div></div>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/schematic-diagrams/diy-vga-to-mac-connector.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use Analog oscilloscope ?</title>
		<link>http://electropart.info/tutorials/how-to-use-analog-oscilloscope.html</link>
		<comments>http://electropart.info/tutorials/how-to-use-analog-oscilloscope.html#comments</comments>
		<pubDate>Mon, 19 Sep 2011 07:40:02 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[analog oscilloscope]]></category>
		<category><![CDATA[cathode ray oscilloscopes]]></category>
		<category><![CDATA[how to use oscilloscope]]></category>
		<category><![CDATA[oscilloscope panel]]></category>
		<category><![CDATA[using an oscilloscope]]></category>
		<category><![CDATA[using oscilloscope]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=1135</guid>
		<description><![CDATA[The oscilloscope is a device for viewing the changes in a variable size in time. It uses an electron beam to translate, by a curve drawn on a screen voltage variations. For proper using oscilloscope, follow the instructions in the order by referring to the description of the front panel of the oscilloscope. Starting up [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://electropart.info/tutorials/how-to-use-analog-oscilloscope.html/attachment/analog-oscilloscope-panel" rel="attachment wp-att-1136"><img class="aligncenter size-medium wp-image-1136" title="Oscilloscope panel" src="http://electropart.info/wp-content/uploads/2011/09/analog-oscilloscope-panel-300x152.jpg" alt="Oscilloscope panel" width="300" height="152" /></a>The oscilloscope is a device for viewing the changes in a variable size in time. It uses an electron beam to translate, by a curve drawn on a screen voltage variations. For proper using oscilloscope, follow the instructions in the order by referring to the description of the front panel of the oscilloscope.<br />
<strong>Starting up and preset the unit :</strong></p>
<ul>
<li><span id="more-1135"></span>The device is connected to the mains (230V in general) power button allows oscilloscope to turn on, which makes the lights on. (4).</li>
<li>After a while, there are the spot of light on the display device (sufficient time to emitting cathode heated to a certain temperature and that there is emission of electrons).</li>
<li>If after a few seconds, the point is still not visible, use horizontal alignment and vertical alignment as shown. (10, 11)</li>
<li>Using the concentration (or focus) (acting on the anode concentration) brightness (which works on the accelerator anode) controls the sharpness of the spot. (5 and 6)</li>
<li>The point should not stay too long concentrated at one point: this will end the damage to phosphor screen, with the knob adjust the time base (or sweep time) (9) (which works on the horizontal deflection plates), printed on-site more or less rapidly: at low speeds, we see a spot to move on the screen, if the scanning speed increases, we can see the solid line called the traces.</li>
</ul>
<p><strong>Viewing the voltage</strong></p>
<ul>
<li>Select an entry (called channels) or B (1 and 2)</li>
<li>Choose direct coupling (coupling ( switch position)</li>
<li>Set the sensitivity in V / cm or mV / cm on the selected channel, depending on the voltage display. (7 and <img src='http://electropart.info/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> </li>
<li>Set the circuit by connecting the instrument ground.</li>
<li> Set the time base so that it appears on the screen, the number of periods desired. (9)</li>
<li>If the curve is not stable, adjust the time by working on the Level &#8220;button trigger.</li>
<li>Perform the setting horizontal alignment and vertical alignment.</li>
</ul>
<p><strong>Featuring two voltages</strong></p>
<p>The units have a two probe input channel YA and YB: they allow you to see the two voltages.</p>
<ul>
<li>Select the two-way &#8220;A and B&#8221;</li>
<li>Select the sensitivity (7) and (8) in accordance with the voltage to display.</li>
<li>Make connections to the oscilloscope.<a href="http://electropart.info/wp-content/uploads/2011/09/displays-two-voltage-connection-1.jpg"><img class="aligncenter size-full wp-image-1137" title="Displays two voltage connection" src="http://electropart.info/wp-content/uploads/2011/09/displays-two-voltage-connection-1.jpg" alt="Displays two voltage connection" width="652" height="210" /></a></li>
<li>The mass is common in cases where it is located between the two terminals which have dipoles will see the voltages, it is necessary to reverse the voltage YB acting on the button &#8220;B +&#8221;.<a href="http://electropart.info/tutorials/how-to-use-analog-oscilloscope.html/attachment/displays-two-voltage-connection-2" rel="attachment wp-att-1138"><img class="aligncenter size-full wp-image-1138" title="Displays two voltage connection 2" src="http://electropart.info/wp-content/uploads/2011/09/displays-two-voltage-connection-2.jpg" alt="Displays two voltage connection 2" width="588" height="182" /></a></li>
</ul>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/electronics-articles/the-oscilloscope.html" rel="bookmark">The oscilloscope</a></strong> <br />The oscilloscope is a measuring instrument widely used in electronics. It provides a measure of signal in the time domain. Using the probes you can view the signal at a point in a circuit. Attention, "all that is observed is ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/computer-introduction/computer-graphics/computer-video-display-technologies.html" rel="bookmark">Computer Video Display Technologies</a></strong> <br />Even though computer display technology is essential with a Personal computers user interface like the mouse and also keyboard, the video display is the latecomer on to computing. Just before Cathode ray tube (CRT) monitors got into standard use, the ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/basic-concept-of-electricity/the-voltage.html" rel="bookmark">The Voltage</a></strong> <br />This is the explanation about "Voltage" Voltage is commonly used as a short name for electrical potential difference. Its corresponding SI unit is the volt (not italicized). Electric potential is a hypothetically measurable physical dimension, and is denoted by the ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/computer-introduction/computer-system-board/the-computer-start-up-process.html" rel="bookmark">The Computer Start-Up Process</a></strong> <br />When you turn power on, several things happen in the PC: You hear the fan motor starting. There are one or more cooling fans in the PC. They produce a whirring sound. After a few seconds, text starts to scroll ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/triode-vacuum-tube.html" rel="bookmark">Triode Vacuum Tube</a></strong> <br />A triode is an electronic amplification device having three active electrodes. The term most commonly applies to a vacuum tube (or valve in British English) with three elements: the filament or cathode, the grid, as well as the plate or ...<br /><br /></div></div>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/tutorials/how-to-use-analog-oscilloscope.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synthesizer lighting effects part 3</title>
		<link>http://electropart.info/schematic-diagrams/synthesizer-lighting-effects-part-3.html</link>
		<comments>http://electropart.info/schematic-diagrams/synthesizer-lighting-effects-part-3.html#comments</comments>
		<pubDate>Thu, 21 Jul 2011 04:15:35 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Fun circuits]]></category>
		<category><![CDATA[Schematic Diagrams]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[led control circuit]]></category>
		<category><![CDATA[led lights circuit]]></category>
		<category><![CDATA[lighting effects]]></category>
		<category><![CDATA[Synthesizer lighting effects]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=826</guid>
		<description><![CDATA[In this section layout is shown on the board of the Synthesizer lighting effects, Synthesizer lighting effects part 2. Set will save time that you would spend on the search for components and printed circuit board manufacture a similar device. Set NM5101 can be purchased in stores or on the radio market electronic components. Based [...]]]></description>
			<content:encoded><![CDATA[<p>In this section layout is shown on the board of the Synthesizer lighting effects, <a title="Electronics Online: Synthesizer lighting effects part 2" href="../schematic-diagrams/synthesizer-lighting-effects-part-2.html">Synthesizer lighting effects part 2</a>.<br />
<a href="http://electropart.info/schematic-diagrams/synthesizer-lighting-effects-part-3.html/attachment/synthesizer-board-layout" rel="attachment wp-att-829"><img class="aligncenter size-full wp-image-829" title="Synthesizer board layout" src="http://electropart.info/wp-content/uploads/2011/07/Synthesizer-board-layout.jpg" alt="Synthesizer board layout" width="348" height="250" /></a><br />
<a href="http://electropart.info/?attachment_id=832"><img class="aligncenter size-full wp-image-832" title="DA1 7805 IC" src="http://electropart.info/wp-content/uploads/2011/07/DA1-7805-IC.jpg" alt="DA1 7805 IC" width="194" height="143" /></a>Set will save time that you would spend on the search for components and printed circuit board manufacture a similar device. Set NM5101 can be purchased in stores or on the radio market electronic components.</p>
<p>Based on the book &#8220;Gather yourself&#8221; no. 2, 2004.</p>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/synthesizer-lighting-effects-part-2.html" rel="bookmark">Synthesizer lighting effects part 2</a></strong> <br />To replace or supplement the drawings variation of Synthesizer lighting effects, or other effects you can use the programming set of NM9211. To do this, the board provides ISP-port. Synthesizer assembly Before assembling the board review the recommendations that are ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/synthesizer-lighting-effects.html" rel="bookmark">Synthesizer lighting effects.</a></strong> <br />In this tutorial we will assemble an entertaining and simple keyboard lighting effects. The device is designed to display animated graphics 12-LED on a single 7x7-sized field. Animated images are stored in the microcontroller and the touch of a button ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/new-led-drivers-with-98-efficiency.html" rel="bookmark">New LED Drivers with 98% Efficiency</a></strong> <br />ZMD AG has announced the expansion of its family of high-volt 40-LED drivers ZLED7x20. The new device ZLED7320 has efficiency up to 98%, and comes in a compact DFN-5. Chip manufacturers to provide more cost-effective devices for the expanding market ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/simple-projects/battery-operated-mini-night-lighting.html" rel="bookmark">Battery operated mini night lighting</a></strong> <br />The circuit is very simple electronic scheme for your small projects. With a few modifications your can use it for aquarium lighting for example, or other applications. The circuit is use low-power LED and this night light will automatically turn ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/simple-5-ampere-power-supply.html" rel="bookmark">Simple 5 Ampere Power Supply</a></strong> <br />Power supply is a must used circuits. Most of electronic devices which require DC voltage usually need a power supply. Some of them just need original power supply or battery, but some of circuits like Radio transmitter or amplifier needs ...<br /><br /></div></div>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/schematic-diagrams/synthesizer-lighting-effects-part-3.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synthesizer lighting effects part 2</title>
		<link>http://electropart.info/schematic-diagrams/synthesizer-lighting-effects-part-2.html</link>
		<comments>http://electropart.info/schematic-diagrams/synthesizer-lighting-effects-part-2.html#comments</comments>
		<pubDate>Thu, 21 Jul 2011 03:47:34 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Fun circuits]]></category>
		<category><![CDATA[Schematic Diagrams]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[led control circuit]]></category>
		<category><![CDATA[led lights circuit]]></category>
		<category><![CDATA[lighting effects]]></category>
		<category><![CDATA[Synthesizer lighting effects part 2]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=809</guid>
		<description><![CDATA[To replace or supplement the drawings variation of Synthesizer lighting effects, or other effects you can use the programming set of NM9211. To do this, the board provides ISP-port. Synthesizer assembly Before assembling the board review the recommendations that are given at the beginning of this book. To avoid failure, try to observe generally accepted [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://electropart.info/schematic-diagrams/synthesizer-lighting-effects-part-2.html/attachment/synthesizer-lighting-effects-schematic" rel="attachment wp-att-811"><img class="aligncenter size-medium wp-image-811" title="Synthesizer lighting effects schematic" src="http://electropart.info/wp-content/uploads/2011/07/Synthesizer-lighting-effects-schematic-300x186.jpg" alt="Synthesizer lighting effects schematic" width="300" height="186" /></a>To replace or supplement the drawings variation of Synthesizer lighting effects, or other effects you can use the programming set of NM9211. To do this, the board provides ISP-port.</p>
<p><strong>Synthesizer assembly</strong><br />
Before assembling the board review the recommendations that are given at the beginning of this book. To avoid failure, try to observe generally accepted rules of assembly. List of components within the set of NM5101, presented below :</p>
<p align="center"><strong><span id="more-809"></span>Parts List of NM5101 set<br />
</strong></p>
<table border="1" cellspacing="1" cellpadding="3" align="center">
<tbody>
<tr>
<td style="text-align: left;"><strong>Position</strong></td>
<td style="text-align: left;"><strong>Characterization</strong></td>
<td style="text-align: left;"><strong>Name and / or note</strong></td>
<td><strong>Number</strong></td>
</tr>
<tr>
<td>R1 &#8230; R6, R8</td>
<td>330 ohm</td>
<td><span><span>Orange, orange, brown *</span></span></td>
<td>7</td>
</tr>
<tr>
<td>R7, R9</td>
<td>4.7 kOhm</td>
<td>Yellow, purple, red *</td>
<td>2</td>
</tr>
<tr>
<td>C1, C2</td>
<td>22 pF</td>
<td>22 (220) &#8211; markings on the capacitors</td>
<td>2</td>
</tr>
<tr>
<td>NW, C4</td>
<td>0.1 uF</td>
<td>104 &#8211; markings on the capacitors</td>
<td>2</td>
</tr>
<tr>
<td>C5</td>
<td>470 uF, 16 V</td>
<td>0812 &#8211; marking the capacitor</td>
<td>1</td>
</tr>
<tr>
<td>DA1</td>
<td>7805</td>
<td>The voltage regulator 5 (TO-220)</td>
<td>1</td>
</tr>
<tr>
<td>DD1</td>
<td>AT90S2313</td>
<td>Microcontroller (DIP-20)</td>
<td>1</td>
</tr>
<tr>
<td>HL1 &#8230; HL49</td>
<td>0 3 mm</td>
<td>LEDs glow red</td>
<td>49</td>
</tr>
<tr>
<td>SW1</td>
<td></td>
<td>Button</td>
<td>1</td>
</tr>
<tr>
<td>ZQ1</td>
<td>4.0 MHz</td>
<td>Crystal</td>
<td>1</td>
</tr>
<tr>
<td></td>
<td>DIP-20</td>
<td>Block</td>
<td>1</td>
</tr>
<tr>
<td>ISP</td>
<td>PLD-80R</td>
<td>Male connector, 3-pin, 2-row, angular</td>
<td>1</td>
</tr>
<tr>
<td>XI, X2</td>
<td style="text-align: left;">ED500V-2&#215;5</td>
<td>Mounting clip (2 pins)</td>
<td>1</td>
</tr>
<tr>
<td></td>
<td>BAT / SNAP</td>
<td>Battery connector</td>
<td>1</td>
</tr>
<tr>
<td>A5101</td>
<td>71&#215;51 mm</td>
<td>PCB</td>
<td>1</td>
</tr>
</tbody>
</table>
<p>In accordance with Fig. 3 install and weld components on the board. DA1 chip is installed in accordance with Fig. 4 ( <a title="Electronics Online: Synthesizer lighting effects part 3" href="../schematic-diagrams/synthesizer-lighting-effects-part-3.html">Synthesizer lighting effects part 3</a> ).<br />
After installation check the quality of the ration and proper installation elements. Recheck charge for lack of short-circuits and breaks tracks.</p>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/synthesizer-lighting-effects.html" rel="bookmark">Synthesizer lighting effects.</a></strong> <br />In this tutorial we will assemble an entertaining and simple keyboard lighting effects. The device is designed to display animated graphics 12-LED on a single 7x7-sized field. Animated images are stored in the microcontroller and the touch of a button ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/synthesizer-lighting-effects-part-3.html" rel="bookmark">Synthesizer lighting effects part 3</a></strong> <br />In this section layout is shown on the board of the Synthesizer lighting effects, Synthesizer lighting effects part 2. Set will save time that you would spend on the search for components and printed circuit board manufacture a similar device. ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/led-flip-flop-project.html" rel="bookmark">LED Flip Flop Project</a></strong> <br />You're a newbie in electronics and you need to practice your electronics knowledge and then I suggest you to build this LED Flasher (Flip-Flop). This circuit is very simple and very easy to understand... INTRODUCTION: Flashing circuits are very interesting. ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/assembly-instructions-thermometer-ds-18b20.html" rel="bookmark">Assembly instructions thermometer DS-18B20</a></strong> <br />Instructions for self-assembly of an adapter for an electronic thermometer in the DS-18B20. In accordance with the scheme presented in this page Electronic temperature on DS-18B20. Figure 1. Install diode U2 (1N5817) Figure 2. Install diode U4 (1N5817) Figure 3. ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/simple-projects/battery-operated-mini-night-lighting.html" rel="bookmark">Battery operated mini night lighting</a></strong> <br />The circuit is very simple electronic scheme for your small projects. With a few modifications your can use it for aquarium lighting for example, or other applications. The circuit is use low-power LED and this night light will automatically turn ...<br /><br /></div></div>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/schematic-diagrams/synthesizer-lighting-effects-part-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synthesizer lighting effects.</title>
		<link>http://electropart.info/schematic-diagrams/synthesizer-lighting-effects.html</link>
		<comments>http://electropart.info/schematic-diagrams/synthesizer-lighting-effects.html#comments</comments>
		<pubDate>Thu, 21 Jul 2011 03:09:11 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Fun circuits]]></category>
		<category><![CDATA[Schematic Diagrams]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[led control circuit]]></category>
		<category><![CDATA[led lights circuit]]></category>
		<category><![CDATA[lighting effects]]></category>
		<category><![CDATA[Synthesizer lighting effects]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=803</guid>
		<description><![CDATA[In this tutorial we will assemble an entertaining and simple keyboard lighting effects. The device is designed to display animated graphics 12-LED on a single 7&#215;7-sized field. Animated images are stored in the microcontroller and the touch of a button switch reduction.The type and amount of lighting effects are determined by the microcontroller firmware and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://electropart.info/schematic-diagrams/synthesizer-lighting-effects.html/attachment/synthesizer-boards" rel="attachment wp-att-804"><img class="alignleft size-full wp-image-804" title="Synthesizer boards" src="http://electropart.info/wp-content/uploads/2011/07/Synthesizer-boards.jpg" alt="Synthesizer boards" width="231" height="182" /></a>In this tutorial we will assemble an entertaining and simple keyboard lighting effects. The device is designed to display animated graphics 12-LED on a single 7&#215;7-sized field. Animated images are stored in the microcontroller and the touch of a button switch reduction.The type and amount of lighting effects are determined by the microcontroller firmware and the basic version are 12 options.</p>
<p><span id="more-803"></span>This device would be interesting for students: introduction to the basics of electronics, allowing you to experience the assembly and adjustment of modern electronic devices. Synthesizer will be used for fan of light effects as a festive illumination, or a tutorial on microprocessor technology and programming.<br />
This device requires a voltage 9-25V and current around 50mA.</p>
<p><strong>Description of this Synthesizer</strong></p>
<p>Fig. 1 and Fig. 2 on the <a title="Electronics Online: Synthesizer lighting effects part 2" href="../schematic-diagrams/synthesizer-lighting-effects-part-2.html">Synthesizer lighting effects part 2</a> shows the assembly of synthesizer boards and electric circuit.</p>
<p>Synthesizer is based on a microcontroller from Atmel (DD1). Power supply of the microcontroller obtained from the IC regulator DA1.<br />
Elements of CI, C2, ZQ1 set the operating frequency of the internal oscillator of the microcontroller. Resistors R1 &#8230; R6, R8 &#8211; used for current limiting. SW1 button is a consistent choice of animated images. The basic version of the proposed microcontroller 12 stitched images.</p>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/synthesizer-lighting-effects-part-2.html" rel="bookmark">Synthesizer lighting effects part 2</a></strong> <br />To replace or supplement the drawings variation of Synthesizer lighting effects, or other effects you can use the programming set of NM9211. To do this, the board provides ISP-port. Synthesizer assembly Before assembling the board review the recommendations that are ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/synthesizer-lighting-effects-part-3.html" rel="bookmark">Synthesizer lighting effects part 3</a></strong> <br />In this section layout is shown on the board of the Synthesizer lighting effects, Synthesizer lighting effects part 2. Set will save time that you would spend on the search for components and printed circuit board manufacture a similar device. ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/electronics-articles/connecting-leds-with-a-minimum-ports-of-microcontroller.html" rel="bookmark">Connecting LEDs with a minimum ports of microcontroller</a></strong> <br />With a large number of recent is always a pity to waste the free ports on the display and really do not want to enter additional items. Nevertheless, there are many ways to connect the LEDs. One of them - ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/simple-projects/battery-operated-mini-night-lighting.html" rel="bookmark">Battery operated mini night lighting</a></strong> <br />The circuit is very simple electronic scheme for your small projects. With a few modifications your can use it for aquarium lighting for example, or other applications. The circuit is use low-power LED and this night light will automatically turn ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/electronics-articles/introduction-to-digital-electronics.html" rel="bookmark">Introduction to digital electronics</a></strong> <br />Any character of information in digital electronics devices encode binary code, so the signal can take only two values: high or low voltage, the presence or absence of a voltage pulse, etc., necessary condition for this is the ability to ...<br /><br /></div></div>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/schematic-diagrams/synthesizer-lighting-effects.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DC to DC Converter: Theory of Operation</title>
		<link>http://electropart.info/basic-concept-of-electricity/dc-to-dc-converter-theory-of-operation.html</link>
		<comments>http://electropart.info/basic-concept-of-electricity/dc-to-dc-converter-theory-of-operation.html#comments</comments>
		<pubDate>Thu, 30 Jun 2011 09:51:03 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Basic Concept Of Electricity]]></category>
		<category><![CDATA[Electronics Articles]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[basic DC to DC Converter]]></category>
		<category><![CDATA[DC to DC Converter]]></category>
		<category><![CDATA[DC to DC Converter circuit]]></category>
		<category><![CDATA[DC to DC Converter theory]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=699</guid>
		<description><![CDATA[This document will explain about the basic theory operation of DC/DC converter circuit. DC to DC converter circuit is an electronic circuit which can be used either to transform one voltage to different level/value; or to provide an isolation barrier for a voltage bus. DC to DC converters are typically being used in power distribution [...]]]></description>
			<content:encoded><![CDATA[<p>This document will explain about the basic theory operation of DC/DC converter circuit.</p>
<p><a rel="attachment wp-att-700" href="http://electropart.info/basic-concept-of-electricity/dc-to-dc-converter-theory-of-operation.html/attachment/theory-operation-of-dc-to-dc-converter-circuit"><img class="aligncenter size-medium wp-image-700" title="Theory operation of DC to DC converter circuit" src="http://electropart.info/wp-content/uploads/2011/06/Theory-operation-of-DC-to-DC-converter-circuit-300x272.jpg" alt="Theory operation of DC to DC converter circuit" width="300" height="272" /></a></p>
<p>DC to DC converter circuit is an electronic circuit which can be used either to transform one voltage to different level/value; or to provide an isolation barrier for a voltage bus. DC to DC converters are typically being used in power distribution system to provide a local voltage conversion, point of load voltage regulation or power bus isolation.</p>
<p><span id="more-699"></span>Download the document of: Theory of Operation for DC/DC converter<br />
» <strong><a rel="external nofollow" href="http://downloads.circuitdiagram.net/dll/jzylm8" target="_blank">Download Link</a></strong></p>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/electronics-articles/multilevel-inverter-theory.html" rel="bookmark">Multilevel Inverter Theory</a></strong> <br />This document will teach you about the theory of multilevel inverter / multilevel converter. The concept of multilevel converters has been introduced since 1975. The term multilevel began with the three-level converter. Subsequently, several multilevel converter topologies have been developed. ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/basic-theory-of-dc-to-ac-inverter.html" rel="bookmark">Basic Theory of DC to AC Inverter</a></strong> <br />In this document you will find some important lessons related to the basic theory of making the inverter circuit, among others, about the working system of the inverter and several calculations required in making an inverter. If you really want ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/basic-concept-of-electricity/power-supply-basic-theory.html" rel="bookmark">Power Supply Basic Theory</a></strong> <br />This is a basic theory document for power supply design by Teuvo Suntio. You'll find reference about basic electrical math there... Go to this page to view the document<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/12v-to-9v-dc-to-dc-converter-circuit.html" rel="bookmark">12V to 9V, DC to DC Converter Circuit</a></strong> <br />The following schematic is the schematic diagram of DC to DC converter. The converter circuit will convert the 12V supply to become 9V output voltage. This circuit may usable if you have fixed 12V power supply / battery, but you ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/electronics-articles/analog-digital-a-d-converters.html" rel="bookmark">Analog / digital (A / D) converters</a></strong> <br />The A / D converters are electronic devices that provide for a two-way relationship between the value of the signal at its input and the digital word obtained at its output. The relationship is established in most cases, with the ...<br /><br /></div></div>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/basic-concept-of-electricity/dc-to-dc-converter-theory-of-operation.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pipe Bomb Microphone</title>
		<link>http://electropart.info/tutorials/pipe-bomb-microphone.html</link>
		<comments>http://electropart.info/tutorials/pipe-bomb-microphone.html#comments</comments>
		<pubDate>Sat, 12 Feb 2011 09:01:25 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[build Pipe Bomb Microphone]]></category>
		<category><![CDATA[make Pipe Bomb Microphone]]></category>
		<category><![CDATA[Pipe Bomb Mic]]></category>
		<category><![CDATA[Pipe Bomb Microphone]]></category>
		<category><![CDATA[Pipe Bomb Microphone construction]]></category>
		<category><![CDATA[Pipe Bomb Microphone design]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=451</guid>
		<description><![CDATA[Here the Pipe Bomb Microphone construction, designed by Jamie Heilman. My own specifications for my prototype are X= 36cm, Y= 5.5cm. This imparted a quite high pitch tone but I prefer it. The X and Y dimensions should be played with to generate the exact tone your seeking, also I chose a telephone speaker along [...]]]></description>
			<content:encoded><![CDATA[<p>Here the Pipe Bomb Microphone construction, designed by Jamie Heilman.</p>
<p style="text-align: center;"><a rel="attachment wp-att-452" href="http://electropart.info/tutorials/pipe-bomb-microphone.html/attachment/pipe-bomb-microphone"><img class="alignnone size-medium wp-image-452" title="pipe bomb microphone" src="http://electropart.info/wp-content/uploads/2011/02/pipe-bomb-microphone-300x98.jpg" alt="pipe bomb microphone" width="300" height="98" /></a></p>
<p>My own specifications for my prototype are X= 36cm, Y= 5.5cm. This imparted a quite high pitch tone but I prefer it.</p>
<p>The X and Y dimensions should be played with to generate the exact tone your seeking, also I chose a telephone speaker along with a crystal mic so I got the funkiest tone I could think of. A dynamic mic would limit the treble somewhat most likely make it sound less harsh. I’d be thinking about any mods made to this design (ie. stories, suggestions, etc.) so really feel free to e mail me.</p>
<p><span id="more-451"></span>The amps could be any old common op-amp construction that could drive a speaker or take a microphone input.I just made use of some surplus material I&#8217;d lying around to build mine. The finished object had all the circuitry inside the tube and the power supply on the outside, with one control for the gain of the speaker (microphone was at fixed gain).</p>
<p>Note, if you locate this in front of the amplifier and turn every thing up, without adding any dampening towards the pipe, it is going to feedback just like you won&#8217;t imagine! You&#8217;ll most likely wish to avoid this because it tends to hurt your ears. I put a bit of foam rubber in one end of the pipe and an old sock in the other to dampen feedback. I like to leave my alternatives open though, so I also didn’t make this a permanent addition. My prototype is essentially a fuzz, as my guitar will overload the speaker quite easily and the tube just adds a bit of strange overtone and what I swear will be the smallest hint of reverb. Sounds wonderful though! Clean tones by way of a related set up would sound good too, but I haven’t constructed one of those yet. Perhaps a larger speaker (4-5&#8243;) and an old carpet pipe would probably add better characteristics for clean tones. Try altering the tube material also for a different tone, I almost used a little bit of gutter piping when I first made this, right now I wonder what it would’ve sounded like.</p>
<p>Download the Pipe Bomb Microphone construction in PDF file:<br />
» <strong><a rel="external nofollow" href="http://downloads.circuitdiagram.net/dll/cyyzii">Download Link</a></strong></p>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/stereo-tone-control-12v.html" rel="bookmark">Stereo Tone Control 12V</a></strong> <br />The below diagram is a circuit diagram of stereo tone control which also on the market in kit, you could possibly look for the kit at electronic part shop near your home. The tone control need 12 volt of supply ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/lm1036n-stereo-tone-control-circuit.html" rel="bookmark">LM1036N Stereo Tone Control Circuit</a></strong> <br />Do you want to build a tone control circuit is simple, inexpensive and easy to make ..? if so, this circuit could be right for your project. Circuit Description: The LM1036 works as a DC controlled tone (bass/treble), volume and ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/simple-doorbell-circuit-with-ic-555.html" rel="bookmark">Simple Doorbell Circuit with IC 555</a></strong> <br />This electronic schematic diagram is simple, you can use this schematic diagram as your simple electronic project. It's easy and fun. The main part of this doorbell circuit are two NE555 timer ICs. WhenÂ  some one presses switch S1 momentarily ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/electronics-answer-question/how-can-i-make-an-am-wireless-microphone-can-you-suggest-a-website-to-find-such-schematic-diagram-for-that.html" rel="bookmark">How can I make an AM wireless microphone? Can you suggest a website to find such schematic diagram for that?</a></strong> <br />Our instructor in Electronics engineering gave us a project, that is, to make a wireless microphone that will transmit in AM bandwidth. Because this is our first design project, I don't know where to start. I even search the web ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/loudspeaker.html" rel="bookmark">Loudspeaker</a></strong> <br />A loudspeaker is a device that converts low-frequency electrical signals into sound. The task of the speaker is to enable the air in periodic oscillations - which in turn brings in the human ear drum to vibrate. To convert the electrical ...<br /><br /></div></div>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/tutorials/pipe-bomb-microphone.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Voltage Measurement with Voltmeters</title>
		<link>http://electropart.info/measuring-the-components/voltage-measurement-with-voltmeters.html</link>
		<comments>http://electropart.info/measuring-the-components/voltage-measurement-with-voltmeters.html#comments</comments>
		<pubDate>Thu, 06 Jan 2011 07:20:02 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Measuring the Components]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[voltage measurement]]></category>
		<category><![CDATA[voltage measurement procedure]]></category>
		<category><![CDATA[voltmeter connection]]></category>
		<category><![CDATA[voltmeter measurement]]></category>
		<category><![CDATA[voltmeter procedure]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=429</guid>
		<description><![CDATA[About voltmeter: Voltmeters measure voltage. Voltage is measured in volts, V. Voltmeters are connected in parallel across components. Voltmeters possess a extremely higher resistance. Connecting a voltmeter in parallel Measuring voltage at a stage When testing circuits you often have to find the voltages at numerous factors, for instance the voltage at pin 2 of [...]]]></description>
			<content:encoded><![CDATA[<p>About voltmeter:</p>
<ul>
<li>Voltmeters measure voltage.</li>
<li>Voltage is measured in volts, V.</li>
<li>Voltmeters are connected in parallel across components.</li>
<li>Voltmeters possess a extremely higher resistance.</li>
</ul>
<p style="text-align: center;"><a rel="attachment wp-att-430" href="http://electropart.info/measuring-the-components/voltage-measurement-with-voltmeters.html/attachment/measurement-with-voltmeter"><img class="size-full wp-image-430 aligncenter" title="measurement with voltmeter" src="http://electropart.info/wp-content/uploads/2011/01/measurement-with-voltmeter.jpg" alt="measurement with voltmeter" width="291" height="166" /></a><br />
Connecting a voltmeter in parallel</p>
<p><strong>Measuring voltage at a stage</strong><br />
When testing circuits you often have to find the voltages at numerous factors, for instance the voltage at pin 2 of a 555 timer chip. This can seem complicated &#8211; where should you connect the second voltmeter lead?<br />
<span id="more-429"></span></p>
<ul>
<li>Connect the black ( damaging -) voltmeter lead to 0V, normally the negative terminal of the battery or power provide.</li>
<li>Connect the red ( constructive +) voltmeter lead to the point you exactly where you need to measure the voltage.</li>
<li>The black lead can be left completely connected to 0V whilst you use the red lead as a probe to measure voltages at numerous factors.</li>
<li>You may wish to make use of a crocodile clip around the black lead to maintain it in location.</li>
</ul>
<p>Voltage at a stage truly means the voltage difference in between that stage and 0V (zero volts) that is normally the damaging terminal of the battery or energy provide. Generally 0V will probably be labelled on the circuit diagram as being a reminder.</p>
<p>Analogue meters get a little energy from your circuit under check to run their pointer. This might upset the circuit and give an incorrect studying. To prevent this voltmeters should possess a resistance of at least 10 occasions the circuit resistance ( get this to become the highest resistor worth near exactly where the meter is linked).</p>
<p>Most analogue voltmeters utilized in school science are not appropriate for electronics simply because their resistance is too very low, usually a couple of k. 100k or even more is required for most electronics circuits.</p>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/measuring-the-components/dioda-measurement-using-digital-multimeter.html" rel="bookmark">Dioda Measurement using Digital Multimeter</a></strong> <br />This article will teach you how to check measure a diode. This is a basic knowledge for students and electronic hobbysts. If your project is failed or your electronic device is broken, then you need to check the components. And ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/basic-concept-of-electricity/the-voltage.html" rel="bookmark">The Voltage</a></strong> <br />This is the explanation about "Voltage" Voltage is commonly used as a short name for electrical potential difference. Its corresponding SI unit is the volt (not italicized). Electric potential is a hypothetically measurable physical dimension, and is denoted by the ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/fet-voltmeter.html" rel="bookmark">FET VOLTMETER</a></strong> <br />To complement the previous post here we present voltmeter circuit based on a FET. This FET Volt Meter replaces the function of the VTVM while at the same time ridding the instrument of the usual line cord. In addition, drift ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/led-torch-circuit.html" rel="bookmark">LED Torch circuit</a></strong> <br />The following schematic diagram is the diagram of simpe LED torch circuit based on IC MAX600 from MAXIM semiconductors. The MAX660 is a CMOS monolithic type voltage converter IC. It can easily drive three extra bright white LEDs. The LED's ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/basic-concept-of-electricity/power-dissipation-in-resistance.html" rel="bookmark">Power Dissipation in Resistance</a></strong> <br />When current flows in a resistance, heat is produced because friction between the moving free electrons and the atoms obstructs the path of electron flow. The heat is evidence that power is used in producing current. This is how a ...<br /><br /></div></div>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/measuring-the-components/voltage-measurement-with-voltmeters.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Light Switch Wiring Diagram</title>
		<link>http://electropart.info/schematic-diagrams/light-switch-wiring-diagram.html</link>
		<comments>http://electropart.info/schematic-diagrams/light-switch-wiring-diagram.html#comments</comments>
		<pubDate>Tue, 25 May 2010 03:01:24 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Basic Concept Of Electricity]]></category>
		<category><![CDATA[Schematic Diagrams]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[home electrical wiring diagram]]></category>
		<category><![CDATA[home light installation]]></category>
		<category><![CDATA[Light Switch Wiring Diagram]]></category>
		<category><![CDATA[Switch Wiring Diagram]]></category>
		<category><![CDATA[wiring diagram for switch]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=285</guid>
		<description><![CDATA[Do you want to install the installation of lights in your house ..? If yes, then you should follow the procedures for installing the lights the following: Wiring diagram: You should look is the color of wires on the wiring diagram, if reversed in the installation of the cable then there will be a short [...]]]></description>
			<content:encoded><![CDATA[<p>Do you want to install the installation of lights in your house ..? If yes, then you should follow the procedures for installing the lights the following:</p>
<p><strong>Wiring diagram:</strong></p>
<p style="text-align: center;"><a href="http://electropart.info/schematic-diagrams/light-switch-wiring-diagram.html/attachment/light-switch-wiring-diagram"><img class="size-medium wp-image-284 aligncenter" title="light switch wiring diagram" src="http://electropart.info/wp-content/uploads/2010/05/light-switch-wiring-diagram-300x235.jpg" alt="light switch wiring diagram" width="300" height="235" /></a></p>
<p>You should look is the color of wires on the wiring diagram, if reversed in the installation of the cable then there will be a short circuit.</p>
<p><span id="more-285"></span>Picture above is the wiring diagram for single pole light switch. For the installation of one light that can be controlled from multiple locations, please <a rel="external nofollow" href="http://www.make-my-own-house.com/light-switch-wiring.html" target="_blank">visit this page</a>.</p>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/electronics-book/guide-book-on-home-electrical-wiring.html" rel="bookmark">Guide Book on Home Electrical Wiring</a></strong> <br />If you will improve your home electrical installations, or want to design a building or electrical installation you want to add electrical devices in your home, then you need a home electrical wiring guides so that the work becomes easy ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/nokia-wiring-diagram.html" rel="bookmark">Nokia Wiring Diagram</a></strong> <br />These Nokia wiring diagram would be help you to fixing your own Nokia cell phone. The files containing almost of Nokia schematic diagrams / circuit diagram. Visit this page of Nokia cell phone  diagram to download complete Nokia wiring diagram.<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/electronics-answer-question/where-can-i-find-a-schematicwiring-diagram-of-a-motherboard.html" rel="bookmark">Where can I find a schematic/wiring diagram of a motherboard?</a></strong> <br />I have been all over the internet looking for a schematic diagram of a motherboard but I can find one. Can anyone tell me where I can download, or view, a schematic diagram, (not a block diagram) of a motherboard, ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/a-motion-sensor-for-security-lights.html" rel="bookmark">A Motion Sensor for Security Lights</a></strong> <br />The description of a system based on a passive infrared motion detector (PIR) type BS1600 or BS1700, which can be used for security or corridor lighting in a power saving mode. Transformerless power supply generates a constant voltage of 12 V ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/easy-built-led-flasher-circuit.html" rel="bookmark">Easy Built LED Flasher circuit</a></strong> <br />The following diagram is a schematic diagram of the LED flasher circuit is very simple, very cheap does not require much cost and very easy to build. Parts list: LED1 = Red LED C1 = 100uf/16V IC1 = LM3909 Battery ...<br /><br /></div></div>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/schematic-diagrams/light-switch-wiring-diagram.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

