<?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; Schematic Diagrams</title>
	<atom:link href="http://electropart.info/category/schematic-diagrams/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>IR Wireless Headphone</title>
		<link>http://electropart.info/schematic-diagrams/audio-schematic-diagrams/ir-wireless-headphone.html</link>
		<comments>http://electropart.info/schematic-diagrams/audio-schematic-diagrams/ir-wireless-headphone.html#comments</comments>
		<pubDate>Tue, 08 May 2012 17:55:32 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Audio]]></category>
		<category><![CDATA[cordless headphones]]></category>
		<category><![CDATA[Wireless Headphone]]></category>
		<category><![CDATA[wireless headphones ir]]></category>
		<category><![CDATA[wireless ir headphones]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=6220</guid>
		<description><![CDATA[If you want a wireless audio system there are several ways to do it. The simplest is to use infrared light that is modulated audio signal to be issued. In the circuit that receives light, it will demodulates, amplifies it and deliver it to the loudspeakers. As seen in the IR Wireless Headphone schematic, transmitter [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://electropart.info/schematic-diagrams/audio-schematic-diagrams/ir-wireless-headphone.html/attachment/ir-wireless-headphone-transmitter" rel="attachment wp-att-6222"><img class="aligncenter size-medium wp-image-6222" title="IR Wireless Headphone transmitter" src="http://electropart.info/wp-content/uploads/2012/05/IR-Wireless-Headphone-transmitter-300x215.jpg" alt="IR Wireless Headphone transmitter" width="300" height="215" /></a>If you want a wireless audio system there are several ways to do it. The simplest is to use infrared light that is modulated audio signal to be issued. In the circuit that receives light, it will demodulates, amplifies it and deliver it to the loudspeakers.</p>
<p><span id="more-6220"></span>As seen in the IR Wireless Headphone schematic, transmitter circuit is very simple here. The transformer assembled as a matching impedance, and low impedance windings are connected in parallel with the TV or radio speaker. IR diodes are commonly used. 10 ohm resistor that limits the current through the IR diode should be 1 mg. This 9Vdc powered transmitter that can be provided either by regular batteries or AC / DC adapter.<br />
<a href="http://electropart.info/schematic-diagrams/audio-schematic-diagrams/ir-wireless-headphone.html/attachment/ir-wireless-headphone-receiver" rel="attachment wp-att-6221"><img class="aligncenter size-medium wp-image-6221" title="IR Wireless Headphone receiver" src="http://electropart.info/wp-content/uploads/2012/05/IR-Wireless-Headphone-receiver-300x256.jpg" alt="IR Wireless Headphone receiver" width="300" height="256" /></a><br />
As the receiver is concerned, the same infrared light captured by the phototransistor, it is pre-amplified and amplified by transistors BC549C and then gives enough power to move the speaker of headset through the output transistor.</p>
<p>This receiver, like the transmitter is also powered from 9Vdc, but in this case must inevitably be provided by the battery, because with AC / DC adapter all this will be useless. Would look funny, right? When we use a wireless Headphone. But still use power supply with cable.</p>
<p>Remember that the audio is transmitted must have line of sight between the transmitter and receiver.</p>
<p>You can extend the range of the transmitter by placing more transistors BD140 with more IR LEDs.</p>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/simple-diagram-of-infrared-barrier.html" rel="bookmark">Simple diagram of Infrared barrier</a></strong> <br />This simple little circuit infrared barrier, triggered by crossing it. All farm consists of two parts - a transmitter and receiver. Both are fed a constant stabilized voltage 12 ... 16 V, current consumption is less than 20mA transmitter, receiver ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/simple-projects/mini-wireless-spy-fm-88-108-scheme.html" rel="bookmark">Mini Wireless Spy FM 88-108 Scheme</a></strong> <br />This FM transmitter works in the 88-108 MHz frequency band, low-power electronics assembly and easy to implement for use in our homes. And this circuit is great for us to start practicing a little radio transmissions. Frequency modulation (FM). The ...<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/purpose-of-the-resistor.html" rel="bookmark">Purpose Of The Resistor</a></strong> <br />Resistors can play any of numerous different roles in electrical and electronic equipment. Here are a few of the more common ways resistors are used. Voltage division Youâ€™ve already learned a little about how voltage dividers can be designed using ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/30w-fm-rf-amplifier-circuit-based-on-bly89.html" rel="bookmark">30W FM RF Amplifier circuit based on BLY89</a></strong> <br />This is an high power RF amplifier circuit. With high power output, the FM signal will cover wide area. The manufacture of amplifier is very simple and easy. Schematic Diagram: Component Parts: C1, C2, C3, C4 = 10 - 80pF ...<br /><br /></div></div>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/schematic-diagrams/audio-schematic-diagrams/ir-wireless-headphone.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bell Electronic : Ring Ding Dong</title>
		<link>http://electropart.info/schematic-diagrams/audio-schematic-diagrams/bell-electronic-ring-ding-dong.html</link>
		<comments>http://electropart.info/schematic-diagrams/audio-schematic-diagrams/bell-electronic-ring-ding-dong.html#comments</comments>
		<pubDate>Sun, 15 Apr 2012 16:07:08 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Audio]]></category>
		<category><![CDATA[Fun circuits]]></category>
		<category><![CDATA[Bell Electronic]]></category>
		<category><![CDATA[Bell Electronic circuit diagram]]></category>
		<category><![CDATA[BELL ELECTRONICS]]></category>
		<category><![CDATA[electronic bell]]></category>
		<category><![CDATA[HT2811]]></category>
		<category><![CDATA[Ring Ding Dong]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=6191</guid>
		<description><![CDATA[This circuit produces the classic bell chime &#8220;Ding-Dong&#8221; but no mechanical parts used to it. With integrated designed for such use and some components will achieve the same effect and solid state (no moving parts). Each time you press the doorbell generator creates a Ding-Dong weak audio signal with the sound of bells. The signal [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://electropart.info/wp-content/uploads/2012/04/ELECTRONIC-BELL-DIAGRAM.jpg"><img class="aligncenter size-medium wp-image-6195" title="ELECTRONIC BELL DIAGRAM" src="http://electropart.info/wp-content/uploads/2012/04/ELECTRONIC-BELL-DIAGRAM-300x103.jpg" alt="ELECTRONIC BELL DIAGRAM" width="300" height="103" /></a>This circuit produces the classic bell chime &#8220;Ding-Dong&#8221; but no mechanical parts used to it. With integrated designed for such use and some components will achieve the same effect and solid state (no moving parts).</p>
<p><span id="more-6191"></span>Each time you press the doorbell generator creates a Ding-Dong weak audio signal with the sound of bells. The signal is high in volume by the amplifier and is reproduced by the speaker. The power supply circuit provides the voltage necessary to operate. The interface circuit to connect the rings fed centrally as buildings or intercom.</p>
<p><a href="http://electropart.info/schematic-diagrams/audio-schematic-diagrams/bell-electronic-ring-ding-dong.html/attachment/electronic-bell-schematic-diagram" rel="attachment wp-att-6194"><img class="aligncenter size-medium wp-image-6194" title="Electronic bell schematic diagram" src="http://electropart.info/wp-content/uploads/2012/04/electronic-bell-schematic-diagram-300x133.jpg" alt="electronic bell schematic diagram" width="300" height="133" /></a>The circuit is powered through the point marked V + and ground. The heart of it is the integrated HT2811, developed by the firm koreana Holtek. For the pin 1 enters the trigger pulse, telling the chip to produce the sound &#8220;Ding-Dong&#8221;. Pins 2 and 3 are connected to sets RC establishing each of the sounds (2 = &#8220;Ding&#8221; / 3 = &#8220;Dong&#8221;). Altering these components is achieved by varying the sound of bells. Pin 4 is the mass. By the pin 5 leaves the audio signal which is amplified by a pair of transistors used in darlington configuration. The terminals 6 and 7 are connected to a 680K resistor which adjusts the gain of the internal preamplifier chip. Finally the terminal 8 enters the feed to the chip which is current limited by the resistance of 100 ohms and 3.3v stabilized by means of zener diode. The 100μF capacitor filters the possible ripple left in the power line.</p>
<p><a href="http://electropart.info/schematic-diagrams/audio-schematic-diagrams/bell-electronic-ring-ding-dong.html/attachment/bell-electronics-interface" rel="attachment wp-att-6193"><img class="aligncenter size-medium wp-image-6193" title="Bell electronics interface" src="http://electropart.info/wp-content/uploads/2012/04/Bell-electronics-interface-300x127.jpg" alt="Bell electronics interface" width="300" height="127" /></a>In case of using this bell at departments or locations where you can not modify the wiring in the bell push is necessary to use this interface. It receives at its input an AC or DC voltage and rectifies through PR the bridge rectifier whose output is filtered by continuous capacitor 470μF and subsequently attacks the small coil of a reed relay. The key to this relay trips the main circuit as would a conventional switch. The rectifier bridge (PR) can be either formed by diodes 1A 250V or more. While the voltage of the relay coil must be the same as the voltage of the previous original buzzer ring (usually 12V). While the relay can be operated without rectifying the line or filter is not suitable because the alternating current would act to relay as a buzzer, opening and closing your key 50 times per second and this can cause some damage in the mechanism after a time.</p>
<p><a href="http://electropart.info/schematic-diagrams/audio-schematic-diagrams/bell-electronic-ring-ding-dong.html/attachment/bell-electronics-power-supply" rel="attachment wp-att-6192"><img class="aligncenter size-medium wp-image-6192" title="Bell electronics power supply" src="http://electropart.info/wp-content/uploads/2012/04/bell-electronics-power-supply-300x92.jpg" alt="Bell electronics power supply" width="300" height="92" /></a>This section of the circuit adapts the voltage from the power supply required by the household the equipment. It also enables battery power for all occasions when the power fails. The transformer reduces the voltage AC 4.5v. The bridge rectifier (PR) converts AC power continuously, which is filtered by the capacitor of 2200μF. The 1N4007 diodes act as source selector system by operating the mains or batteries as needed. The fuse protects the transformer section 220v. The bridge rectifier (PR) can be any voltage which is greater than 250V and whose current is not lower than 1A. Point + V represents the output of the source, while the batteries (4 in series) input by the points + Bat and-Bat.</p>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/basic-concept-of-electricity/basic-theory-of-power-supply-circuit.html" rel="bookmark">Basic Theory of Power Supply Circuit</a></strong> <br />A power supply or UPS circuit can be a device that supplies electrical power to one or far more electrical loads. The term is most generally applied to devices that convert one form of electrical energy to an additional, though ...<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 class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/h-bridge-circuit-and-explanation.html" rel="bookmark">H-Bridge Circuit and Explanation</a></strong> <br />An H bridge is an electronic circuit that enables a voltage to be applied across a load in either direction. These circuits are usually applied in robotics and various applications to enable DC motors to move forwards and reverse. H ...<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/schematic-diagrams/power-supply/high-current-power-supply.html" rel="bookmark">High Current Power Supply</a></strong> <br />This power supply circuit can supply high current for your electronic project. Transistor 2N3055 is the main component which will increase the current level. Part Total Qty. Description/Value R1 1 680 Ohm 1/4 Watt Resistor C1 1 20,000 - 50,000uF ...<br /><br /></div></div>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/schematic-diagrams/audio-schematic-diagrams/bell-electronic-ring-ding-dong.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Metal detectors based on 555 IC</title>
		<link>http://electropart.info/simple-projects/metal-detectors-based-on-555-ic.html</link>
		<comments>http://electropart.info/simple-projects/metal-detectors-based-on-555-ic.html#comments</comments>
		<pubDate>Mon, 09 Apr 2012 22:55:12 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Fun circuits]]></category>
		<category><![CDATA[Simple Projects]]></category>
		<category><![CDATA[metal detector electronics circuit]]></category>
		<category><![CDATA[metal detector project]]></category>
		<category><![CDATA[Metal detectors]]></category>
		<category><![CDATA[simple metal detector]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=6187</guid>
		<description><![CDATA[A very simple metal detector electronics, the project can be designed using a simple 555 timer integrated circuit. As you can see in the schematics, electronic projects require some electronic parts are available. This metal detector electronics circuit also detects metal objects and magnets. When the magnet is near the 10 mH coil, a metal [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://electropart.info/simple-projects/metal-detectors-based-on-555-ic.html/attachment/metal-detector-circuit-diagram" rel="attachment wp-att-6188"><img class="aligncenter size-medium wp-image-6188" title="Metal detector circuit diagram" src="http://electropart.info/wp-content/uploads/2012/04/metal-detector-circuit-diagram-300x233.jpg" alt="Metal detector circuit diagram" width="300" height="233" /></a>A very simple metal detector electronics, the project can be designed using a simple 555 timer integrated circuit. As you can see in the schematics, electronic projects require some electronic parts are available.</p>
<p><span id="more-6187"></span>This metal detector electronics circuit also detects metal objects and magnets. When the magnet is near the 10 mH coil, a metal detector project can be supported by a power supply that can provide a DC output voltage of 6 volts to 12 V. If the metal is closer to the coil L1, it will produce a change in the oscillation frequency of the output, which will produce sound at 8 ohm speaker.</p>
<p><strong>Parts list :</strong><br />
R : 47K<br />
C : 2.2uF (2) 10uF<br />
L : 10uH<br />
IC : 555<br />
Speaker 8 ohm<br />
Supply voltage 6-12V</p>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/simple-projects/simple-lie-detector.html" rel="bookmark">Simple lie detector</a></strong> <br />This simple lie detector circuit implementing human skin conductivity which varies according to the condition of the emotions. You can easily created with just a few minutes and cheap. This is how simple lie detector work : The circuit uses ...<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/schematic-diagrams/audio-power-amplifier-2-20-watt-stereo.html" rel="bookmark">Audio Power Amplifier 2-20 Watt Stereo</a></strong> <br />This schematic is very simple, there is just need 1 active component in each channel (I mean right channel and left channel). So, there are 2 active components for stereo a stereo audio power amplifier. The schematic originally come from ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/simple-led-flasher-circuit.html" rel="bookmark">Simple LED Flasher circuit</a></strong> <br />Here the simple LED flasher circuit that you can use for your simple project. schematic diagram: component part list: How the circuit works: This LED flasher uses a common 555 timer IC for its operation. It is configured as an ...<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/simple-projects/metal-detectors-based-on-555-ic.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BELL ELECTRONICS</title>
		<link>http://electropart.info/simple-projects/bell-electronics.html</link>
		<comments>http://electropart.info/simple-projects/bell-electronics.html#comments</comments>
		<pubDate>Thu, 22 Mar 2012 22:42:33 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Fun circuits]]></category>
		<category><![CDATA[Simple Projects]]></category>
		<category><![CDATA[BELL ELECTRONICS]]></category>
		<category><![CDATA[Bell electronics circuit]]></category>
		<category><![CDATA[electronic bell]]></category>
		<category><![CDATA[electronic bell circuit]]></category>
		<category><![CDATA[electronic door bells]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=6155</guid>
		<description><![CDATA[This Electronic bell circuit uses three op amp741. The Supply voltage of this circuit is dual type, it is between +-5 and +-12V (mounting dual regulated power supply is perfectly adapted). You can apply it as electronic door bells. By pressing and releasing the button immediately, we obtain a sound whose frequency is determined by the setting of the P1. By adjusting the potentiometer P2 to a high pitch, can enter the circuit into oscillation by emitting a continuous whistle.In this case, we must reduce degradation of sound with the potentiometer P1. For installation components, follow closely the diagram layout. Bell Electronic Parts list [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://electropart.info/simple-projects/bell-electronics.html/attachment/bell-electronics-circuit-diagram" rel="attachment wp-att-6156"><img class="aligncenter size-medium wp-image-6156" title="Bell electronics circuit diagram" src="http://electropart.info/wp-content/uploads/2012/03/Bell-electronics-circuit-diagram-300x194.jpg" alt="Bell electronics circuit diagram" width="300" height="194" /></a>This Electronic bell circuit uses three op amp741. The Supply voltage of this circuit is dual type, it is between +-5 and +-12V (mounting dual regulated power supply is perfectly adapted). You can apply it as electronic door bells. By pressing and releasing the button immediately, we obtain a sound whose frequency is determined by the setting of the P1.</p>
<p><span id="more-6155"></span>By adjusting the potentiometer P2 to a high pitch, can enter the circuit into oscillation by emitting a continuous whistle.In this case, we must reduce degradation of sound with the potentiometer P1. For installation components, follow closely the diagram layout.</p>
<p><strong>Bell Electronic Parts list :</strong></p>
<p>All resistors are 1/4 watt unless otherwise stated.<br />
R = 68 ohms<br />
R2 = 1 kohm<br />
R3 = 10 Kohm<br />
R4 = 470 ohms<br />
R5 = 82 Kohm<br />
R6 = 22 Kohm<br />
R7 = 270 ohms<br />
R8 = 10 Kohm<br />
R9 = 47 ohms<br />
Pl = 4.7 MohmsA.<br />
P2 = 220 Kohm A.<br />
Cl = 22uF16V elec.<br />
C2 = 1uF16V elec.<br />
C3 = 0.1 uF 100 Vpol.<br />
C4 = 0.047 uF 100 Vpol.<br />
C5 = 0.047 uF 100 Vpol.<br />
C6 = .47 uF 100 Vpol.<br />
IC1,IC2,IC3 = 741<br />
P = Push.<br />
3 IC Supports 8-pin</p>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/audio-schematic-diagrams/bell-electronic-ring-ding-dong.html" rel="bookmark">Bell Electronic : Ring Ding Dong</a></strong> <br />This circuit produces the classic bell chime "Ding-Dong" but no mechanical parts used to it. With integrated designed for such use and some components will achieve the same effect and solid state (no moving parts). Each time you press the ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/basic-concept-of-electricity/ohms-law.html" rel="bookmark">Ohm&#8217;s Law</a></strong> <br />The interdependence between current, voltage, and resistance is one of the most fundamental rules, or laws, in electrical circuits. It is called Ohmâ€™s Law, named after the scientist who supposedly first expressed it. Three formulas denote this law: E=IR I=E/R ...<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/schematic-diagrams/15-watt-audio-amplifier.html" rel="bookmark">15 Watt Audio Amplifier</a></strong> <br />Circuit Description: This amplifier uses a dual 20 Volt power supply and delivers 15 watts RMS into an 8 ohm load. Q1 operates in common emitter, the input signal being passed to the bias chain consisting of Q8, Q9, D6, ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/simple-projects/simple-lie-detector.html" rel="bookmark">Simple lie detector</a></strong> <br />This simple lie detector circuit implementing human skin conductivity which varies according to the condition of the emotions. You can easily created with just a few minutes and cheap. This is how simple lie detector work : The circuit uses ...<br /><br /></div></div>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/simple-projects/bell-electronics.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Electronic Led flasher</title>
		<link>http://electropart.info/simple-projects/electronic-led-flasher.html</link>
		<comments>http://electropart.info/simple-projects/electronic-led-flasher.html#comments</comments>
		<pubDate>Tue, 20 Mar 2012 15:02:40 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Fun circuits]]></category>
		<category><![CDATA[Simple Projects]]></category>
		<category><![CDATA[electronic flasher circuit]]></category>
		<category><![CDATA[electronic flasher for led]]></category>
		<category><![CDATA[electronic flashers]]></category>
		<category><![CDATA[electronic led flasher]]></category>
		<category><![CDATA[Led electronic flasher]]></category>
		<category><![CDATA[led light flasher]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=6150</guid>
		<description><![CDATA[The wiring diagram of electronic flasher above shows the use of four NAND gates contained within the integrated circuit 74HC132 (can be replaced by the 74LS132). The three first gates IC1-A,  IC1-B and IC1-C are used in oscillator stage whose frequency is determined by the values ​​of C1, R1 and R2, the third IC1-D is mounted as an inverter to flash the LED DL1 and DL2. These integrated circuits operating at 5 V and 9 V battery 6F22 certainly convenient, voltage is reduced and stabilized by a 78L05 regulator. By rotating the trimmer R2 from one end to another, will change the flashing between 0.5to 3 flashes per second. This electronic flasher circuit can [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://electropart.info/simple-projects/electronic-led-flasher.html/attachment/electronic-flashing-circuit" rel="attachment wp-att-6151"><img class="aligncenter size-medium wp-image-6151" title="Electronic flashing circuit" src="http://electropart.info/wp-content/uploads/2012/03/electronic-flashing-circuit-300x156.jpg" alt="Electronic flashing circuit" width="300" height="156" /></a>The wiring diagram of electronic flasher above shows the use of four NAND gates contained within the integrated circuit 74HC132 (can be replaced by the 74LS132). The three first gates IC1-A,  IC1-B and IC1-C are used in oscillator stage whose frequency is determined by the values ​​of C1, R1 and R2, the third IC1-D is mounted as an inverter to flash the LED DL1 and DL2.</p>
<p><span id="more-6150"></span>These integrated circuits operating at 5 V and 9 V battery 6F22 certainly convenient, voltage is reduced and stabilized by a 78L05 regulator. By rotating the trimmer R2 from one end to another, will change the flashing between 0.5to 3 flashes per second.</p>
<p>This <a>electronic flasher </a>circuit can be placed in bags or placed in a belt to put on waist (when cycling,walking, etc..). You will see this safety circuit is highly efficient flashing in the darkness. Moreover, nothing prevents to build a (relatively inexpensive) and set them on someplaces (legs, back, bike, scooter &#8230;) to improve visibility.</p>
<p><strong>List of electronic components Led electronic flasher:</strong><br />
R1 &#8230;&#8230;&#8230;&#8230;&#8230; 2.2 kOhms<br />
R2 &#8230;&#8230;&#8230;&#8230;&#8230; 10 k trimmer<br />
R3 &#8230;&#8230;&#8230;&#8230;&#8230; 220 Ω<br />
R4 &#8230;&#8230;&#8230;&#8230;&#8230; 220 Ω<br />
C1 &#8230;&#8230;&#8230;&#8230;&#8230; 47 uF electrolytic<br />
C2 &#8230;&#8230;&#8230;&#8230;&#8230; 47 uF electrolytic<br />
C3 &#8230;&#8230;&#8230;&#8230;&#8230; 47 uF electrolytic<br />
DL1 &#8230;&#8230;&#8230;&#8230;. LED<br />
DL2 &#8230;&#8230;&#8230;&#8230;. LED<br />
IC1 &#8230;&#8230;&#8230;&#8230;.. integrated SN74HC132<br />
IC2 &#8230;&#8230;&#8230;&#8230;.. integrated MC78L05<br />
S1 &#8230;&#8230;&#8230;&#8230;&#8230; switch<br />
(Unless otherwise noted, all resistors are 1/4 W 5%</p>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/220v-lamp-flasher.html" rel="bookmark">220V Lamp Flasher</a></strong> <br />This is a simple 220V LED flasher circuit. This circuit is intended as a reliable replacement to thermally-activated switches used for Christmas tree lamp-flashing. Component Parts: R1 = 100K R2,R5 = 1K R3,R6 = 470R R4 = 12K C1 = ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/simple-led-flasher-circuit.html" rel="bookmark">Simple LED Flasher circuit</a></strong> <br />Here the simple LED flasher circuit that you can use for your simple project. schematic diagram: component part list: How the circuit works: This LED flasher uses a common 555 timer IC for its operation. It is configured as an ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/2-transistor-led-flasher-circuit.html" rel="bookmark">2 Transistor LED Flasher Circuit</a></strong> <br />Designed by Tony Van Ron, this simple LED Flasher use 2 transistors, similar to flip-flop circuit. This circuit will flash a vibrant or high-brightness red LED (5000+ mcd). Great for fake car alarm or other awareness obtaining equipment. Component values ...<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 class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/portable-230-lamp-flasher.html" rel="bookmark">Portable 230 Lamp Flasher</a></strong> <br />Portable lamp flasher with 230V AC power source, it is able high-power incandescent electric lamp flasher. It is basically a dual flasher (alternating blinker) that can handle two separate 230V AC loads (bulbs L1 and L2). The circuit is fully ...<br /><br /></div></div>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/simple-projects/electronic-led-flasher.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dark activated relay circuit</title>
		<link>http://electropart.info/simple-projects/dark-activated-relay-circuit.html</link>
		<comments>http://electropart.info/simple-projects/dark-activated-relay-circuit.html#comments</comments>
		<pubDate>Sat, 17 Mar 2012 14:13:52 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Fun circuits]]></category>
		<category><![CDATA[Simple Projects]]></category>
		<category><![CDATA[dark activated circuit]]></category>
		<category><![CDATA[dark activated light]]></category>
		<category><![CDATA[dark activated relay]]></category>
		<category><![CDATA[Dark activated relay circuit]]></category>
		<category><![CDATA[dark activated switch circuit]]></category>
		<category><![CDATA[relay light switch]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=6144</guid>
		<description><![CDATA[This circuit can be used to automatically turn on the lights in your car when you entering the tunnel or at evening. It can also be used to power Garden lighting at night and off in the morning at dawn. As a photosensitive component, use a photoresistor (LDR), referenced in FR1 diagram. The pin 3 (non-inverting) of the operational amplifier IC1 is connected to the junction of the LDR and R1 trimmer. The LDR being connected to + 12 volts and the trimmer to ground, together form a bridge with a variable value. The opposite pin (inverting) of the operational [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://electropart.info/simple-projects/dark-activated-relay-circuit.html/attachment/dark-activated-relay-circuit-diagram" rel="attachment wp-att-6146"><img class="aligncenter size-medium wp-image-6146" title="Dark activated relay circuit diagram" src="http://electropart.info/wp-content/uploads/2012/03/Dark-activated-relay-circuit-diagram-300x175.jpg" alt="Dark activated relay circuit diagram" width="300" height="175" /></a>This circuit can be used to automatically turn on the lights in your car when you entering the tunnel or at evening. It can also be used to power Garden lighting at night and off in the morning at dawn. As a photosensitive component, use a photoresistor (LDR), referenced in FR1 diagram.</p>
<p><span id="more-6144"></span>The pin 3 (non-inverting) of the operational amplifier IC1 is connected to the junction of the LDR and R1 trimmer. The LDR being connected to + 12 volts and the trimmer to ground, together form a bridge with a variable value. The opposite pin (inverting) of the operational amplifier is connected to the junction of two resistors R2 and R3, R2 being connected to + 12 volts and R3 to ground, together form the fixed bridge. Voltage at the output of operational amplifier is 6 volts. When the LDR is illuminated by light, at pin 3 of IC1, we have a positive voltage is higher than that present at pin 2and therefore the output pin 6 of IC1 is at logic 1 (at + 12 volts).</p>
<p>The resistor R4 therefore can not biasing the transistor which isa PNP, relay remains inactive. When the LDR is placed in the dark, the pin 3 of IC1 has a lesspositive voltage on pin 2. Therefore, the output pin 6 of IC1 is at logic level 0 (ground). The resistor R4 is grounded and the base of transistor TR1 is biased (PNP).  The latter then becomes conductive and the relay placed in the collector is activated. which used to control any load. The trimmer R1 connected in series with the photoresistor used for test the detection sensitivity.</p>
<p><strong>Parts list :</strong><br />
R1 &#8230;&#8230;&#8230;. 10 k trimmer<br />
R2 &#8230;&#8230;&#8230;. 10 k<br />
R3 &#8230;&#8230;&#8230;. 10 k<br />
R4 &#8230;&#8230;&#8230;. 1.2 kOhms<br />
R5 &#8230;&#8230;&#8230;. 1.2 kOhms<br />
FR1 &#8230;&#8230;&#8230; photoresistor<br />
C1 &#8230;&#8230;&#8230;. 100 uF electr olytique<br />
DS1 &#8230;&#8230;.. 1N4007 diode<br />
TR1 &#8230;&#8230;&#8230; 2N3702 PNP<br />
IC1 &#8230;&#8230;&#8230; Integrated uA741<br />
RL1 &#8230;&#8230;&#8230; Relay 12 V 1 R</p>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/basic-concept-of-electricity/inverting-operational-amplifier-op-amp.html" rel="bookmark">Inverting Operational Amplifier (Op-Amp)</a></strong> <br />This is the simple explanation about Inverting Operational Amplifier (Op-Amp): An inverting amplifier makes use of negative feedback to invert and amplify a voltage. The Rin,Rf resistor network permits a few of the output signal to be returned towards the ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/basic-concept-of-electricity/series-circuits.html" rel="bookmark">Series Circuits</a></strong> <br />When components in a circuit are connected in successive order with the end of each joined up to the other end of the next as shown below in figure 1, they form a series circuit. An electric current consists of ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/a-simple-dioda-and-transistor-tester-circuit-2.html" rel="bookmark">A simple dioda and transistor tester circuit</a></strong> <br />The proposed diode tester and transistor tester circuit above are very simple and quite universal. Allows you to quickly test transistors, diodes, or ping circuit. If the transistor broken, the corresponding LED will blink, indicating the structure of the transistor ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/universal-battery-charger-circuit.html" rel="bookmark">Universal Battery Charger Circuit</a></strong> <br />This is the circuit diagram of Universal Battery Charger. The current output and voltage output of this battery charger can be adjusted in accordance with the battery requirements. The charger output voltage is adjustable and regulated, and has a control ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/basic-concept-of-electricity/series-parallel-circuits.html" rel="bookmark">Series-Parallel Circuits</a></strong> <br />In many circuits, some components are connected in series to have the same current, while others are in parallel for the same voltage. When analysing and doing calculations with series-parallel circuits you simply apply what you have learnt from the ...<br /><br /></div></div>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/simple-projects/dark-activated-relay-circuit.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FET VOLTMETER</title>
		<link>http://electropart.info/components/fet-voltmeter.html</link>
		<comments>http://electropart.info/components/fet-voltmeter.html#comments</comments>
		<pubDate>Tue, 01 Nov 2011 18:13:16 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Components]]></category>
		<category><![CDATA[Schematic Diagrams]]></category>
		<category><![CDATA[FET VOLTMETER]]></category>
		<category><![CDATA[simple voltmeter]]></category>
		<category><![CDATA[voltmeter circuit]]></category>
		<category><![CDATA[voltmeter schematic]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=1255</guid>
		<description><![CDATA[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 rates are far superior to vacuum tube circuits allowing a 0.5 volt full scale range [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://electropart.info/components/fet-voltmeter.html/attachment/fet-voltmeter" rel="attachment wp-att-1256"><img class="aligncenter size-medium wp-image-1256" title="FET Voltmeter" src="http://electropart.info/wp-content/uploads/2011/11/FET-Voltmeter-300x220.jpg" alt="FET Voltmeter" width="300" height="220" /></a>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.</p>
<p><span id="more-1255"></span>In addition, drift rates are far superior to vacuum tube circuits allowing a 0.5 volt full scale range which is impractical with most vacuum tubes. The low-leakage, low-noise 2N4340 is an ideal device for this application.</p>
<div id="seo_alrp_related"><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 class="seo_alrp_rl_content"><strong><a href="http://electropart.info/measuring-the-components/voltage-measurement-with-voltmeters.html" rel="bookmark">Voltage Measurement with Voltmeters</a></strong> <br />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 ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/power-supply/5-volt-power-supply.html" rel="bookmark">5 Volt power supply</a></strong> <br />This is a simple 5volt power supply circuit using ic regulator type 7805. This circuit can be paired with Running LEDs circuit II in the Fun circuit category or even digital ic circuits. Input ranges from 8 Volts to 18 ...<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/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>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/components/fet-voltmeter.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amperemeter (AM-METER)</title>
		<link>http://electropart.info/schematic-diagrams/amperemeter-am-meter.html</link>
		<comments>http://electropart.info/schematic-diagrams/amperemeter-am-meter.html#comments</comments>
		<pubDate>Wed, 26 Oct 2011 00:02:20 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Schematic Diagrams]]></category>
		<category><![CDATA[ammeter circuit]]></category>
		<category><![CDATA[Amperemeter circuit]]></category>
		<category><![CDATA[amperemeter schematic diagram]]></category>
		<category><![CDATA[Current meter]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=1247</guid>
		<description><![CDATA[This ammeter circuit would be a simple project for you. It may be a little help when your ampermeter damaged or simply to learn how ammeters work. Current meter ranges from 100 pA to 3 mA full scale. Voltage across input is 100 µV at lower ranges rising to 3 mV at 3 mA. The [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://electropart.info/schematic-diagrams/amperemeter-am-meter.html/attachment/ammeter-2" rel="attachment wp-att-1249"><img class="aligncenter size-medium wp-image-1249" title="Ammeter" src="http://electropart.info/wp-content/uploads/2011/10/ammeter1-300x231.jpg" alt="Ammeter" width="300" height="231" /></a>This ammeter circuit would be a simple project for you. It may be a little help when your ampermeter damaged or simply to learn how ammeters work.</p>
<p><span id="more-1247"></span>Current meter ranges from 100 pA to 3 mA full scale. Voltage across input is 100 µV at lower ranges rising to 3 mV at 3 mA. The buffers on the op amp are to remove ambiguity with high-current overload. The output can also drive a DVM or a-DPM.</p>
<p>Parts list :</p>
<p>Parts list :<br />
R1 : 20K<br />
R2 : 60K<br />
R3 : 30K<br />
R4 : 1M<br />
R5 : 1G<br />
R6 : 10K<br />
R7 : 1K Variable<br />
R8, R9 : 2K<br />
R10 : 6.65K<br />
R11 : 2K8<br />
R12 3.32K<br />
R13 : 1K<br />
R12 0.8 ohm<br />
C1 : 30pF<br />
D1 : LM385 1,2V<br />
D2,D3 : 1N457<br />
Q1 : 2N2484<br />
Q2 : 2N2219<br />
Q3 : 2N2905<br />
A1 : LM11<br />
M1 : 100uF</p>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/simple-projects/metal-detectors-based-on-555-ic.html" rel="bookmark">Metal detectors based on 555 IC</a></strong> <br />A very simple metal detector electronics, the project can be designed using a simple 555 timer integrated circuit. As you can see in the schematics, electronic projects require some electronic parts are available. This metal detector electronics circuit also detects ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/power-supply/5-volt-power-supply.html" rel="bookmark">5 Volt power supply</a></strong> <br />This is a simple 5volt power supply circuit using ic regulator type 7805. This circuit can be paired with Running LEDs circuit II in the Fun circuit category or even digital ic circuits. Input ranges from 8 Volts to 18 ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/computer-introduction/drives-and-storage-media/hard-disk-drive-definition.html" rel="bookmark">Hard disk drive definition</a></strong> <br />To several people, the hard disk drive is an essential and still probably the most mysterious component of a personal computer device. A hard disk drive is actually a closed device that your Computer uses for nonvolatile data storage. Nonvolatile, ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/simple-projects/simple-lie-detector.html" rel="bookmark">Simple lie detector</a></strong> <br />This simple lie detector circuit implementing human skin conductivity which varies according to the condition of the emotions. You can easily created with just a few minutes and cheap. This is how simple lie detector work : The circuit uses ...<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/amperemeter-am-meter.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zener diode tester</title>
		<link>http://electropart.info/schematic-diagrams/zener-diode-tester.html</link>
		<comments>http://electropart.info/schematic-diagrams/zener-diode-tester.html#comments</comments>
		<pubDate>Mon, 17 Oct 2011 08:59:19 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Schematic Diagrams]]></category>
		<category><![CDATA[Simple Projects]]></category>
		<category><![CDATA[component tester]]></category>
		<category><![CDATA[test zener diode]]></category>
		<category><![CDATA[testing zener diodes]]></category>
		<category><![CDATA[Zener diode tester]]></category>
		<category><![CDATA[Zener tester]]></category>
		<category><![CDATA[Zener tester circuit]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=1237</guid>
		<description><![CDATA[The following circuit will complete your component tester tool collection. The circuit offers a inexpensive and reliable way of testing zener diodes. In order to work, this zener tester requires 30 VDC. This zener tester based on famous 741 operational amplifier. RV1 can be calibrated in volts, so that when LED 1 just lights, the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://electropart.info/schematic-diagrams/zener-diode-tester.html/attachment/zener-tester" rel="attachment wp-att-1238"><img class="aligncenter size-medium wp-image-1238" title="Zener tester" src="http://electropart.info/wp-content/uploads/2011/10/zener-tester-300x153.jpg" alt="Zener tester" width="300" height="153" /></a>The following circuit will complete your component tester tool collection. The circuit offers a inexpensive and reliable way of testing zener diodes. In order to work, this zener tester requires 30 VDC.</p>
<p><span id="more-1237"></span>This zener tester based on famous 741 operational amplifier. RV1 can be calibrated in volts, so that when LED 1 just lights, the voltage on pins 2 and 3 are nearly equal. Hence, the zener voltage can be read directly from the setting of RV1. The supply need only be as high a value as the zener itself For a more accurate measurement, a precision pot could be added and calibrated.</p>
<p>Zener tester parts  list :<br />
R1 : 4K7<br />
RV1 : 10 K linier variable resistor<br />
Led<br />
IC1 :  LS741</p>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/diode-tester.html" rel="bookmark">Diode tester</a></strong> <br />This diode tester circuit is very simple and can quickly determine the condition of a diode. The circuit checks for sure if a diode is open, shorted, or working properly. If lamp A lights, the diode is functional. When lamp-B ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/a-simple-dioda-and-transistor-tester-circuit-2.html" rel="bookmark">A simple dioda and transistor tester circuit</a></strong> <br />The proposed diode tester and transistor tester circuit above are very simple and quite universal. Allows you to quickly test transistors, diodes, or ping circuit. If the transistor broken, the corresponding LED will blink, indicating the structure of the transistor ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/simple-projects/555-ic-circuit-tester.html" rel="bookmark">555 IC Circuit Tester</a></strong> <br />NE555 integrated circuit that is widely used in the timer and control circuit. A circuit for independent testing of the 555 IC is given here. the circuit is very simple but can be very useful and saves time to find out the damage of this ic. In the the circuit here, NE555 is wired as an astable multivibrator. When the push-button S1 pushed, D1 &amp; D2 LED is lit alternately. When the output circuit is high-D2 turns on and when output is low D1 turns on. The rate of flashing will be determined on the ...<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/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/zener-diode-tester.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

