<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Electronics Online</title>
	
	<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>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Electropart/info" /><feedburner:info uri="electropart/info" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>How to use an LCD display with only three lines I / O of the HC908</title>
		<link>http://feedproxy.google.com/~r/Electropart/info/~3/y8jdj5hmKFA/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>
<p><a href="http://feedads.g.doubleclick.net/~a/cF8-FEvzua_UhWlLM5qeHy2qcy0/0/da"><img src="http://feedads.g.doubleclick.net/~a/cF8-FEvzua_UhWlLM5qeHy2qcy0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/cF8-FEvzua_UhWlLM5qeHy2qcy0/1/da"><img src="http://feedads.g.doubleclick.net/~a/cF8-FEvzua_UhWlLM5qeHy2qcy0/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Electropart/info/~4/y8jdj5hmKFA" height="1" width="1"/>]]></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>
		<feedburner:origLink>http://electropart.info/components/how-to-use-an-lcd-display-with-only-three-lines-i-o-of-the-hc908.html</feedburner:origLink></item>
		<item>
		<title>IR Wireless Headphone</title>
		<link>http://feedproxy.google.com/~r/Electropart/info/~3/BeHHBVfOhL4/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>
<p><a href="http://feedads.g.doubleclick.net/~a/y4ZEWHEr7XJOGNV4L0MipjzaQG4/0/da"><img src="http://feedads.g.doubleclick.net/~a/y4ZEWHEr7XJOGNV4L0MipjzaQG4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/y4ZEWHEr7XJOGNV4L0MipjzaQG4/1/da"><img src="http://feedads.g.doubleclick.net/~a/y4ZEWHEr7XJOGNV4L0MipjzaQG4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Electropart/info/~4/BeHHBVfOhL4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/schematic-diagrams/audio-schematic-diagrams/ir-wireless-headphone.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://electropart.info/schematic-diagrams/audio-schematic-diagrams/ir-wireless-headphone.html</feedburner:origLink></item>
		<item>
		<title>Magnetic induction</title>
		<link>http://feedproxy.google.com/~r/Electropart/info/~3/rmDcSNmu7dE/magnetic-induction.html</link>
		<comments>http://electropart.info/basic-concept-of-electricity/magnetic-induction.html#comments</comments>
		<pubDate>Tue, 01 May 2012 16:17:50 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Basic Concept Of Electricity]]></category>
		<category><![CDATA[Biot-Savart]]></category>
		<category><![CDATA[electromagnetism]]></category>
		<category><![CDATA[magnetic field strength]]></category>
		<category><![CDATA[magnetic flux density]]></category>
		<category><![CDATA[Magnetic induction]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=6213</guid>
		<description><![CDATA[The magnetic induction or magnetic flux density, symbol B is the magnetic flux per unit area in a section normal to the direction of flow, and in some modern texts called magnetic field strength, since it is the actual field. The unit of density in the International System of Units is tesla. Is given by: [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://electropart.info/wp-content/uploads/2012/05/Magnetic-induction.jpg"><img class="aligncenter size-medium wp-image-6216" title="Magnetic induction" src="http://electropart.info/wp-content/uploads/2012/05/Magnetic-induction-300x293.jpg" alt="Magnetic induction" width="300" height="293" /></a>The magnetic induction or magnetic flux density, symbol B is the magnetic flux per unit area in a section normal to the direction of flow, and in some modern texts called magnetic field strength, since it is the actual field.</p>
<p><span id="more-6213"></span>The unit of density in the International System of Units is tesla.</p>
<p>Is given by:<br />
<a href="http://electropart.info/wp-content/uploads/2012/05/Magnetic-induction-formula.jpg"><img class="size-full wp-image-6215 alignleft" title="Magnetic induction formula" src="http://electropart.info/wp-content/uploads/2012/05/Magnetic-induction-formula.jpg" alt="Magnetic induction formula" width="193" height="64" /></a></p>
<p>&nbsp;</p>
<p>where B is the magnetic flux density generated by a load moving with velocity v at a distance r from the load, and ur is the unit vector connecting the load to the point where B is measured (point g).</p>
<p><strong>or :</strong><br />
<a href="http://electropart.info/wp-content/uploads/2012/05/Magnetic-induction-formula-2.jpg"><img class="size-full wp-image-6214 alignleft" title="Magnetic induction formula" src="http://electropart.info/wp-content/uploads/2012/05/Magnetic-induction-formula-2.jpg" alt="Magnetic induction formula" width="232" height="67" /></a></p>
<p>&nbsp;</p>
<p>where B is the magnetic flux density generated by a conductor through which flows a current I, at a distance r.</p>
<p>The formula of this definition is called the Biot-Savart, and magnetism is equivalent to Coulomb&#8217;s law of electrostatics, as used to calculate the forces acting on moving charges.</p>
<p>The field induction, B, or magnetic flux density (the three names are equivalent) is essential in the field H electromagnetism, since it is responsible for the forces on the moving charges and is, therefore, the physical equivalent to E.</p>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/how-to-connect-the-induction-motor.html" rel="bookmark">How to connect the induction motor ?</a></strong> <br />Induction motor - it's an AC motor, rotor speed is different from the speed of the magnetic field, which creates a current of the stator windings. Induction motor converts electrical energy into mechanical energy. Due to its simplicity, the device ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/circuit-breaker-types.html" rel="bookmark">Circuit Breaker Types</a></strong> <br />There are many types of circuit breaker device. The following are the those circuit breaker types: Instantaneous Magnetic-Trip-Only Circuit Breakers As the name indicates, instantaneous magnetic-trip-only circuit breakers provide short circuit protection but do not provide overload protection. This type ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/basic-concept-of-electricity/magnetism.html" rel="bookmark">Magnetism</a></strong> <br />This article explain the complete basic theory of magneticm. MAGNETISM AND ELECTRICITY Any wire carrying a current of electrons is surrounded by an unseen area of force called a magnetic field. For this reason, any study of electricity or electronics ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/basic-concept-of-electricity/voltage.html" rel="bookmark">The Volt</a></strong> <br />An accumulation of static electric charge, such as an excess or shortage of electrons, is always, associated with a voltage. There are other situations in which voltages exist. Voltage is generated at a power plant, and produced in an electrochemical ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/simple-projects/simple-mikro-fm-90mhz.html" rel="bookmark">Simple Mikro FM 90Mhz</a></strong> <br />This Simple Mikro FM 90Mhz circuit is the simplest circuit of an FM microphone you can get. It does not have microphone but the coil plays the part of microphone it will take sounds in the room by the vibrations ...<br /><br /></div></div>
<p><a href="http://feedads.g.doubleclick.net/~a/TnXzlHv7f1uJ8KXky-JWFrcRJ5o/0/da"><img src="http://feedads.g.doubleclick.net/~a/TnXzlHv7f1uJ8KXky-JWFrcRJ5o/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/TnXzlHv7f1uJ8KXky-JWFrcRJ5o/1/da"><img src="http://feedads.g.doubleclick.net/~a/TnXzlHv7f1uJ8KXky-JWFrcRJ5o/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Electropart/info/~4/rmDcSNmu7dE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/basic-concept-of-electricity/magnetic-induction.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://electropart.info/basic-concept-of-electricity/magnetic-induction.html</feedburner:origLink></item>
		<item>
		<title>Analog / digital (A / D) converters</title>
		<link>http://feedproxy.google.com/~r/Electropart/info/~3/mFGy7XXDE2s/analog-digital-a-d-converters.html</link>
		<comments>http://electropart.info/electronics-articles/analog-digital-a-d-converters.html#comments</comments>
		<pubDate>Sun, 22 Apr 2012 16:06:58 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Electronics Articles]]></category>
		<category><![CDATA[A / D converter with comparator]]></category>
		<category><![CDATA[A / D converters]]></category>
		<category><![CDATA[A/D converter with counters]]></category>
		<category><![CDATA[Analog / digital]]></category>
		<category><![CDATA[analog to digital converter]]></category>
		<category><![CDATA[S / H]]></category>
		<category><![CDATA[Sample and Hold]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=6200</guid>
		<description><![CDATA[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 aid of a reference voltage. The analog to digital conversion is based on theoretical sampling [...]]]></description>
			<content:encoded><![CDATA[<p>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 aid of a reference voltage.<a href="http://electropart.info/wp-content/uploads/2012/04/Basic-sampling-hold-circuit.jpg"><img class="aligncenter size-medium wp-image-6207" title="Basic sampling &amp; hold circuit" src="http://electropart.info/wp-content/uploads/2012/04/Basic-sampling-hold-circuit-300x133.jpg" alt="Basic sampling &amp; hold circuit" width="300" height="133" /></a></p>
<p>The analog to digital conversion is based on theoretical sampling theorem and the concepts of quantization and coding.</p>
<p><span id="more-6200"></span>A first classification of the A / D, is the following :</p>
<ul>
<li>Conversion direct transformation.</li>
<li>Converters with conversion (D / A) intermediate auxiliary.</li>
</ul>
<p style="text-align: left;"><strong>Capture and holding circuits (S / H: Sample and Hold).</strong></p>
<p>The Capture and holding circuits are used for sampling the analog signal (during a time interval) and then holding this value, usually in a capacitor during the duration of the conversion A / D itself.</p>
<p>The basic layout of a  Sample and hold circuit, and its simplified representation, is given in the figure above</p>
<p><a href="http://electropart.info/wp-content/uploads/2012/04/S-H-circuit.jpg"><img class="aligncenter size-medium wp-image-6206" title="S &amp; H circuit" src="http://electropart.info/wp-content/uploads/2012/04/S-H-circuit-300x160.jpg" alt="S &amp; H circuit" width="300" height="160" /></a>The operation of the circuit of the figure is as follows: The A / D converter sends a pulse width tw by line C / M, which activates the electronic switch, charging the capacitor C, during the time tw. In the ideal case, the capacitor voltage follows the input voltage. Then the capacitor keeps the voltage acquired when the switch opens.</p>
<p style="text-align: center;"><a href="http://electropart.info/wp-content/uploads/2012/04/Response-of-a-sampling-and-hold-circuit.jpg"><img class="aligncenter size-medium wp-image-6205" title="Response of a sampling and hold circuit" src="http://electropart.info/wp-content/uploads/2012/04/Response-of-a-sampling-and-hold-circuit-300x236.jpg" alt="Response of a sampling and hold circuit" width="300" height="236" /></a><strong>Response of a sampling and hold circuit</strong></p>
<p>The graph has an ideal character, since both the charging and discharging of the capacitor are closely related to its value and that of the resistances and parasitic capacitances associated with the circuit.</p>
<p>Emphasizes the fact that the control signal C / M is from the A / D converter, which is the only one to know the time that the conversion is complete signal.</p>
<p><strong>A / D converter with comparator</strong></p>
<p>It is the only case in which the processes of quantization and coding are clearly separated. The first step is performed by comparators that discriminate between a finite number of voltage levels. These comparators receive at its inputs the analog input signal with a reference voltage, different for each. Being staggered reference voltages, it is possible to know whether the input signal is above or below each of them, which allow to know the state that corresponds as a result of quantification. Then will need an encoder that give us the output.</p>
<p style="text-align: center;"><a href="http://electropart.info/wp-content/uploads/2012/04/Basic-diagram-of-a-converter-with-comparators.jpg"><img class="aligncenter size-medium wp-image-6204" title="Basic diagram of a converter with comparators" src="http://electropart.info/wp-content/uploads/2012/04/Basic-diagram-of-a-converter-with-comparators-300x256.jpg" alt="Basic diagram of a converter with comparators" width="300" height="256" /></a><strong>Basic diagram of a converter with comparators</strong>.</p>
<p>This converter is a high speed, since the direct conversion process is rather than sequentially, thereby reducing the time necessary conversion to the sum of the propagation times in the comparator and the encoder. However, its usefulness is limited in cases of low resolution, since for an N-bit output are necessary 2N-1 comparators, which leads to excessive complexity and higher cost is desired as a high resolution.</p>
<p>Using the simple circuit of A / D and basically consists of the elements shown in the following figure :<a href="http://electropart.info/wp-content/uploads/2012/04/Basic-diagram-of-a-converter-with-counters.jpg"><img class="aligncenter size-medium wp-image-6203" title="Basic diagram of a converter with counters" src="http://electropart.info/wp-content/uploads/2012/04/Basic-diagram-of-a-converter-with-counters-300x181.jpg" alt="Basic diagram of a converter with counters" width="300" height="181" /></a></p>
<p style="text-align: center;"><strong>Basic diagram of a converter with counters</strong></p>
<p>A comparator, clock, circuit capture and holding (S &amp; H) counter D / A converter and output buffers.</p>
<p>Once the trapping and holding circuit (S / H) is sampled analog signal, the counter starts running counting the pulses from the clock. The result of this count is converted into an analog signal by a D / A converter, proportional to the number of clock pulses received up to that moment.</p>
<p>The analogue signal obtained is introduced to the comparator in which a comparison is made between the input signal and the digital signal converted to analog. At the moment when the latter reaches the same value (actually slightly larger) than the input signal, the comparator output toggles its stoppage occurs and the counter.</p>
<p>The counter value becomes the buffers and becomes the digital output corresponding to the input signal.</p>
<p>This converter has two drawbacks:</p>
<ul>
<li>Low speed.</li>
<li>Conversion time variable.</li>
</ul>
<p>The second drawback can be easily understood with the help of the following figure, which shows that the number of clock pulses (time), needed to achieve the value Vien the D / A converter depends on the value of Vi.<a href="http://electropart.info/wp-content/uploads/2012/04/Output-of-a-D-A-converter.jpg"><img class="aligncenter size-medium wp-image-6202" title="Output of a D/ A converter" src="http://electropart.info/wp-content/uploads/2012/04/Output-of-a-D-A-converter-300x256.jpg" alt="Output of a D/ A converter" width="300" height="256" /></a></p>
<p>Said conversion period is given by the expression :<a href="http://electropart.info/wp-content/uploads/2012/04/conversion-period.jpg"><img class="aligncenter size-full wp-image-6201" title="conversion period" src="http://electropart.info/wp-content/uploads/2012/04/conversion-period.jpg" alt="conversion period" width="300" height="120" /></a></p>
<p>&nbsp;</p>
<div id="seo_alrp_related"><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 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/electronics-articles/analog-and-digital-circuit.html" rel="bookmark">Analog and Digital Circuit</a></strong> <br />Analog circuits Most analog electronic appliances, such as radio receivers, are constructed from combinations of a few types of basic circuits. Analog circuits use a continuous range of voltage as opposed to discrete levels as in digital circuits. The number ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/electronics-articles/pulse-shaper-with-mechanical-contact.html" rel="bookmark">Pulse Shaper with Mechanical Contact</a></strong> <br />In the design of digital devices is often a task of forming a clear pulse of mechanical contacts (with the relay, buttons, etc.) as well as direct delivery of these signals to the inputs of digital devices is not allowed ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/quartz.html" rel="bookmark">Quartz</a></strong> <br />Quartz is known as passive component, which is unique to vibrate (resonate) at a frequency that is very specific and very stable. Usually used for the oscillator, clock, counter, frequency counter, and generally any equipment that temporal precision is important. ...<br /><br /></div></div>
<p><a href="http://feedads.g.doubleclick.net/~a/Hu9xaCkEE68h0wvRFNIO3F728so/0/da"><img src="http://feedads.g.doubleclick.net/~a/Hu9xaCkEE68h0wvRFNIO3F728so/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Hu9xaCkEE68h0wvRFNIO3F728so/1/da"><img src="http://feedads.g.doubleclick.net/~a/Hu9xaCkEE68h0wvRFNIO3F728so/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Electropart/info/~4/mFGy7XXDE2s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/electronics-articles/analog-digital-a-d-converters.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://electropart.info/electronics-articles/analog-digital-a-d-converters.html</feedburner:origLink></item>
		<item>
		<title>Bell Electronic : Ring Ding Dong</title>
		<link>http://feedproxy.google.com/~r/Electropart/info/~3/glQ-Lq32WQo/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>
<p><a href="http://feedads.g.doubleclick.net/~a/5-dHjqDFa0pPlt66Uz3zu6PMD6M/0/da"><img src="http://feedads.g.doubleclick.net/~a/5-dHjqDFa0pPlt66Uz3zu6PMD6M/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/5-dHjqDFa0pPlt66Uz3zu6PMD6M/1/da"><img src="http://feedads.g.doubleclick.net/~a/5-dHjqDFa0pPlt66Uz3zu6PMD6M/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Electropart/info/~4/glQ-Lq32WQo" height="1" width="1"/>]]></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>
		<feedburner:origLink>http://electropart.info/schematic-diagrams/audio-schematic-diagrams/bell-electronic-ring-ding-dong.html</feedburner:origLink></item>
		<item>
		<title>Metal detectors based on 555 IC</title>
		<link>http://feedproxy.google.com/~r/Electropart/info/~3/qB1M8YZ8fqA/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>
<p><a href="http://feedads.g.doubleclick.net/~a/4x5W8izMWcDN-VXTb9c8MrLd7IY/0/da"><img src="http://feedads.g.doubleclick.net/~a/4x5W8izMWcDN-VXTb9c8MrLd7IY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/4x5W8izMWcDN-VXTb9c8MrLd7IY/1/da"><img src="http://feedads.g.doubleclick.net/~a/4x5W8izMWcDN-VXTb9c8MrLd7IY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Electropart/info/~4/qB1M8YZ8fqA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/simple-projects/metal-detectors-based-on-555-ic.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://electropart.info/simple-projects/metal-detectors-based-on-555-ic.html</feedburner:origLink></item>
		<item>
		<title>Simple Mikro FM 90Mhz</title>
		<link>http://feedproxy.google.com/~r/Electropart/info/~3/booY1Cjlq9s/simple-mikro-fm-90mhz.html</link>
		<comments>http://electropart.info/simple-projects/simple-mikro-fm-90mhz.html#comments</comments>
		<pubDate>Wed, 04 Apr 2012 15:35:48 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Simple Projects]]></category>
		<category><![CDATA[FM microphone]]></category>
		<category><![CDATA[Simple Mikro FM]]></category>
		<category><![CDATA[Simple Mikro FM 90Mhz]]></category>
		<category><![CDATA[simplest circuit of an FM microphone]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=6179</guid>
		<description><![CDATA[This Simple Mikro FM 90Mhz circuit is the simplest circuit of an FM microphone you can get. It does not have microphone but the coil plays the part of microphone it will take sounds in the room by the vibrations on a table. This Simple FM circuit does not have a section that determines the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://electropart.info/wp-content/uploads/2012/04/micro-fm-90MHz.jpg"><img class="aligncenter size-medium wp-image-6180" title="Micro fm 90MHz" src="http://electropart.info/wp-content/uploads/2012/04/micro-fm-90MHz-300x223.jpg" alt="Simple Micro fm 90MHz" width="300" height="223" /></a>This Simple Mikro FM 90Mhz circuit is the simplest circuit of an FM microphone you can get. It does not have microphone but the coil plays the part of microphone it will take sounds in the room by the vibrations on a table.</p>
<p><span id="more-6179"></span>This Simple FM circuit does not have a section that determines the frequency. In the following circuit and all that follows, which determines the frequency of operation is called a resonant circuit or tuned circuit and consists of a coil and capacitor.<br />
<a href="http://electropart.info/wp-content/uploads/2012/04/micro-fm-90-MHz-circuit.jpg"><img class="aligncenter size-medium wp-image-6181" title="micro fm 90 MHz circuit" src="http://electropart.info/wp-content/uploads/2012/04/micro-fm-90-MHz-circuit-300x209.jpg" alt="micro fm 90 MHz circuit" width="300" height="209" /></a><br />
This Simple Mikro FM 90Mhz circuit does not include this feature.<br />
The transistor turns on via the 47k and it puts a pulse through the 15 turn winding. The magnetic flux from the winding passes through the coil 6 and in turn the transistor base via the 22n capacitor. This pulse is amplified by the transistor and the circuit is kept active.<br />
The frequency is determined by the 6 turn coil. By moving the whole turns, the frequency decreases. The circuit transmits at 90MHz. It has a very poor and consumes 16mA. The coil is wound on a 3 mm drill and uses son of 0.5 mm.</p>
<div id="seo_alrp_related"><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/schematic-diagrams/simple-rf-oscillator-circuit.html" rel="bookmark">Simple RF Oscillator Circuit</a></strong> <br />This simple RF oscillator circuit is easy to build and components are not critical. Most of them can be found in parts of your junk box.The L1 antenna coil can be made by close winding 8 to 10 turns of ...<br /><br /></div><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/components/transformer.html" rel="bookmark">Transformer</a></strong> <br />Transformers transform Alternating current electricity from one voltage to a different voltage with minimal loss of power. Transformers run just with Alternating current (AC) and this certainly one of the explanation why mains electricity is AC. Step-up transformers increase voltage, ...<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 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>
<p><a href="http://feedads.g.doubleclick.net/~a/dORikF2Izvu8CHM-jGraHBRXI7g/0/da"><img src="http://feedads.g.doubleclick.net/~a/dORikF2Izvu8CHM-jGraHBRXI7g/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/dORikF2Izvu8CHM-jGraHBRXI7g/1/da"><img src="http://feedads.g.doubleclick.net/~a/dORikF2Izvu8CHM-jGraHBRXI7g/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Electropart/info/~4/booY1Cjlq9s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/simple-projects/simple-mikro-fm-90mhz.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://electropart.info/simple-projects/simple-mikro-fm-90mhz.html</feedburner:origLink></item>
		<item>
		<title>TRIAC : Component characteristic</title>
		<link>http://feedproxy.google.com/~r/Electropart/info/~3/Dqs2GjcdxX8/triac-component-characteristic.html</link>
		<comments>http://electropart.info/components/triac-component-characteristic.html#comments</comments>
		<pubDate>Tue, 27 Mar 2012 10:35:17 +0000</pubDate>
		<dc:creator>Electronics Online</dc:creator>
				<category><![CDATA[Components]]></category>
		<category><![CDATA[opto-triac]]></category>
		<category><![CDATA[Triac]]></category>
		<category><![CDATA[TRIAC characteristic]]></category>
		<category><![CDATA[TRIAC circuit diagram]]></category>
		<category><![CDATA[TRIAC Component characteristic]]></category>
		<category><![CDATA[very simple TRIAC scheme]]></category>

		<guid isPermaLink="false">http://electropart.info/?p=6164</guid>
		<description><![CDATA[Triac is an active component that is increasingly being used in the circuit today. The direct use of EDF sector allows to switch a large load from circuit much smaller. Component symbols in Figure 1 operates in four modes theoretically, also called quadrants, which can be summarized by the table in Figure 2. These four quadrants in fact dependent on the polarity of the anode A2 from A1 and the triac gate. In the example given in Figure 3, A2 anode is alternately positive and negative, while the trigger is negative (pulling power) when the transistor is conducting. By observing the table, we say that the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://electropart.info/wp-content/uploads/2012/03/TRIAC-symbol.jpg"><img class="aligncenter size-medium wp-image-6176" title="TRIAC symbol" src="http://electropart.info/wp-content/uploads/2012/03/TRIAC-symbol-300x245.jpg" alt="" width="300" height="245" /></a> Triac is an active component that is increasingly being used in the circuit today. The direct use of EDF sector allows to switch a large load from circuit much smaller. Component symbols in Figure 1 operates in four modes theoretically, also called quadrants, which can be summarized by the table in Figure 2. These four quadrants in fact dependent on the polarity of the anode A2 from A1 and the triac gate.</p>
<p><span id="more-6164"></span><a href="http://electropart.info/wp-content/uploads/2012/03/TRIAC-operating-modes.jpg"><img class="aligncenter size-medium wp-image-6175" title="TRIAC operating modes" src="http://electropart.info/wp-content/uploads/2012/03/TRIAC-operating-modes-300x218.jpg" alt="" width="300" height="218" /></a>In the example given in Figure 3, A2 anode is alternately positive and negative, while the trigger is negative (pulling power) when the transistor is conducting.<a href="http://electropart.info/wp-content/uploads/2012/03/Figure-3.jpg"><img class="aligncenter size-medium wp-image-6174" title="Figure 3" src="http://electropart.info/wp-content/uploads/2012/03/Figure-3-300x135.jpg" alt="" width="300" height="135" /></a><br />
By observing the table, we say that the triac operates in quadrants 2 and 3. Different combinations can be obtained. It should just point out that Mode 4 should be avoided, due to excessive consumption in the range above 100 mA against only 50 mAin modes 1, 2 and 3 for a triac type &#8217;standard&#8217;.<br />
Indeed there is a model called &#8221;sensitive&#8221;, which require low gate currents of 5 to 10 mA. This is important because the intensity of the load must be greater from the intensity of the trigger, and that is why dimmer on Trade found, in addition to the indication of the maximum load, minimum load indication, if not triac does not work anymore.<a href="http://electropart.info/wp-content/uploads/2012/03/TRIAC-Figure-4.jpg"><img class="aligncenter size-medium wp-image-6173" title="TRIAC Figure 4" src="http://electropart.info/wp-content/uploads/2012/03/TRIAC-Figure-4-300x173.jpg" alt="" width="300" height="173" /></a><br />
The principle is that the triac is initiated after a control pulse to the next zero crossing of the wave field. The command can be impulsive and Figure 4 provides such a circuit, which is much less demanding than the continuous control of Figure 3.</p>
<p>This type of circuit can then be powered by an RC network from transformer if the control circuit does not consume too much. A level 0 on input C blocks the triac.<br />
The power output is maximum in this case since the triac is initiated immediately afterthe zero crossing of the AC voltage, but we can intervene in different ways for each control pulse delay in order to vary the intensity applied to the load.<br />
<a href="http://electropart.info/wp-content/uploads/2012/03/TRIAC-Figure-5.jpg"><img class="aligncenter size-full wp-image-6172" title="TRIAC Figure 5" src="http://electropart.info/wp-content/uploads/2012/03/TRIAC-Figure-5.jpg" alt="" width="267" height="286" /></a><br />
A simple way to achieve this is an RC network like Figure 5. The offset depends on the values ​​of these two components R and may vary. The diac trigger placed on the phase shift results in a more importantly, it does lead that when the voltage reaches 30V.</p>
<p>There are, however, other more sophisticated ways to obtain complete phase shifts (180°) and automatic systems for modulating the intensity according to various phenomenasuch as light or temperature.<br />
<a href="http://electropart.info/wp-content/uploads/2012/03/Figure-6A.jpg"><img class="aligncenter size-medium wp-image-6171" title="Figure 6A" src="http://electropart.info/wp-content/uploads/2012/03/Figure-6A-300x119.jpg" alt="" width="300" height="119" /></a><br />
Figure 6a and 6b show the power applied to the function of the load in the delay from the relative control pulse to zero.<br />
<a href="http://electropart.info/wp-content/uploads/2012/03/Figure-6B.jpg"><img class="aligncenter size-medium wp-image-6170" title="Figure 6B" src="http://electropart.info/wp-content/uploads/2012/03/Figure-6B-300x156.jpg" alt="" width="300" height="156" /></a><br />
The main drawback of this type of setting is easily lead noise and especially on the receptor MW / LW.</p>
<p>These can be partly eliminated by the addition of a LC circuit comprising a network asthat of FIG 7, wherein the two capacitors (optional) are provided for alternatingnecessarily class (X2) and to self calibrated depending on the intensity required.<a href="http://electropart.info/wp-content/uploads/2012/03/TRIAC-Figure-7.jpg"><img class="aligncenter size-medium wp-image-6169" title="TRIAC Figure 7" src="http://electropart.info/wp-content/uploads/2012/03/TRIAC-Figure-7-300x117.jpg" alt="" width="300" height="117" /></a></p>
<p>This assembly is suitable for circuit &#8221;dimmer&#8221;, but if you want to just use a triac switch is better to use a special circuit in the control of the zero wave sector.<br />
These include for example an opto-triac OMC 3041 with &#8221;zero crossing&#8221; is planned forthis application and the pinout is shown in Figure 8.<a href="http://electropart.info/wp-content/uploads/2012/03/OPTO-TRIAC-MOC-3041-pin-out.jpg"><img class="aligncenter size-medium wp-image-6168" title="OPTO TRIAC MOC 3041 pin out" src="http://electropart.info/wp-content/uploads/2012/03/OPTO-TRIAC-MOC-3041-pin-out-300x211.jpg" alt="" width="300" height="211" /></a><br />
Moreover, the isolation of a optotriac, some 7,500 V, and the control current of ten milliamperes give safety and ease of use highly significant for switching loads of several amperes at a voltage of 230 V or more.<br />
Don&#8217;t forget that mounting a TRIAC, with or without a power transformer, if they are not equipped with optotriacs or similar devices are connected directly to the mains and which should be very cautious with this kind of circuit.<a href="http://electropart.info/wp-content/uploads/2012/03/TRIAC-Figure-9.jpg"><img class="aligncenter size-medium wp-image-6167" title="TRIAC Figure 9" src="http://electropart.info/wp-content/uploads/2012/03/TRIAC-Figure-9-300x157.jpg" alt="" width="300" height="157" /></a><br />
Figure 9 shows a universal interface for controlling various devices connected to the mains using, for example, a computer.</p>
<p>The control is effected by applying a positive level of the LED, the opto-triac in turn controls a triac that there will be chosen according to the respective load. We can equipthe suppression of this interface in Figure 7.In some cases, particularly if the load is highly inductive, it may be necessary to add a protection circuit. Figure 10 shows an effective way to protect the triac.<br />
<a href="http://electropart.info/wp-content/uploads/2012/03/TRIAC-Figure-10.jpg"><img class="aligncenter size-medium wp-image-6166" title="TRIAC Figure 10" src="http://electropart.info/wp-content/uploads/2012/03/TRIAC-Figure-10-300x276.jpg" alt="" width="300" height="276" /></a><br />
Finally, we must not forget to equip each of its triac sink if the power involved requires it,usually you start to place a radiator from a 100 W power for conventional models 6/8 A.Be aware that there are triacs provided for a current of 40A.<a href="http://electropart.info/wp-content/uploads/2012/03/sufficient-simple-TRIAC-scheme.jpg"><img class="aligncenter size-medium wp-image-6165" title="sufficient simple TRIAC scheme" src="http://electropart.info/wp-content/uploads/2012/03/sufficient-simple-TRIAC-scheme-300x112.jpg" alt="" width="300" height="112" /></a><br />
To end this article, Figure 11 shows you a very simple TRIAC scheme is however sufficient, allowing you to remove the doubt about how each of your triacs.</p>
<div id="seo_alrp_related"><div class="seo_alrp_rl_content"><strong><a href="http://electropart.info/schematic-diagrams/laser-scanner-schematics.html" rel="bookmark">Laser Scanner Schematics</a></strong> <br />Scheme for the laser scanner in the laser technique commonly used laser - scanners, galvanometers with a magneto system abnormalities, its anchor - is a permanent magnet with a mirror on which the laser beam is directed, and the excitation ...<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 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/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/lamp-brightness-control.html" rel="bookmark">Lamp Brightness Control</a></strong> <br />The following is a schematic diagram of a lamp brightness control. Lamp used is a light tube with a voltage 3V. You can replace the lamp with other lamp types, such as LEDs. How the circuit works: IC1 works to ...<br /><br /></div></div>
<p><a href="http://feedads.g.doubleclick.net/~a/vH0pVJCXCCmrYpMiglKdUcWe23g/0/da"><img src="http://feedads.g.doubleclick.net/~a/vH0pVJCXCCmrYpMiglKdUcWe23g/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/vH0pVJCXCCmrYpMiglKdUcWe23g/1/da"><img src="http://feedads.g.doubleclick.net/~a/vH0pVJCXCCmrYpMiglKdUcWe23g/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Electropart/info/~4/Dqs2GjcdxX8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/components/triac-component-characteristic.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://electropart.info/components/triac-component-characteristic.html</feedburner:origLink></item>
		<item>
		<title>BELL ELECTRONICS</title>
		<link>http://feedproxy.google.com/~r/Electropart/info/~3/o8Wmzry0U9M/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>
<p><a href="http://feedads.g.doubleclick.net/~a/5Ud1eBNyPrU-wI5ImDLN7TZAI4U/0/da"><img src="http://feedads.g.doubleclick.net/~a/5Ud1eBNyPrU-wI5ImDLN7TZAI4U/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/5Ud1eBNyPrU-wI5ImDLN7TZAI4U/1/da"><img src="http://feedads.g.doubleclick.net/~a/5Ud1eBNyPrU-wI5ImDLN7TZAI4U/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Electropart/info/~4/o8Wmzry0U9M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/simple-projects/bell-electronics.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://electropart.info/simple-projects/bell-electronics.html</feedburner:origLink></item>
		<item>
		<title>Electronic Led flasher</title>
		<link>http://feedproxy.google.com/~r/Electropart/info/~3/MFta990CP6E/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>
<p><a href="http://feedads.g.doubleclick.net/~a/p2aJdpBaoGiQXLbpHxIP9qIJXB4/0/da"><img src="http://feedads.g.doubleclick.net/~a/p2aJdpBaoGiQXLbpHxIP9qIJXB4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/p2aJdpBaoGiQXLbpHxIP9qIJXB4/1/da"><img src="http://feedads.g.doubleclick.net/~a/p2aJdpBaoGiQXLbpHxIP9qIJXB4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Electropart/info/~4/MFta990CP6E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://electropart.info/simple-projects/electronic-led-flasher.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://electropart.info/simple-projects/electronic-led-flasher.html</feedburner:origLink></item>
	</channel>
</rss>

