Showing posts with label build. Show all posts
Showing posts with label build. Show all posts
Saturday, December 21, 2013
Build a Inexpensive Isolation Transformer Circuit Diagram
Build a Inexpensive Isolation Transformer Impromptus Setup Circuit Diagram. Using two 12-V filament or power transformers, an impromptu isolation transformer can be made for low-power (under 50 W) use in testing or servicing. SOI is an ordinary, duplex ac recept-able. Use heavy-wire connections between the 12-V windings because several amperes can flow.
Inexpensive Isolation Transformer Circuit Diagram

Labels:
a,
build,
circuit,
diagram,
inexpensive,
isolation,
transformer
Sunday, August 4, 2013
Build a LT3582 12 DC 5V to 12V DC Converter
Using LT3582-12 dual channel DC DC converter integrated circuit, manufactured by Linear Technology, can be designed a very simple step up dc converter. This 5 to 12V c converter electronic project provide both positive and negative outputs required in many biasing applications such as active matrix OLED (organic light-emitting diode)displays as well as CCD (charge coupled device) applications.

The LT3582 offer an I2C interface that can dynamically program output voltages, power sequencing and output voltage ramps as the application requires. The LT3582’s positive output voltage can be set between 3.2V and 12.775 in 25mV steps, whereas the negative output can be set between -1.2V and -13.95V in 50mV steps. The LT3582-12 is preconfigured with ±12V output, requiring no future programming.
Thursday, July 11, 2013
Build a 35W Bridge Power Amplifier with TDA2030
This is the schematic diagram of 35W bridge power amplifier circuit, delivers 35W power output for 8? speaker. The circuit is similar to this 15W bridge amplifier. It use two pieces of amplifier IC TDA2030 (you may use LM1875 as subtitute/replacement).
Build a 35W Bridge Power Amplifier with TDA2030

Notes:
- Use 15V/3A power supply for maximum performance.
- Use heatsink to prevent overheating on the IC
Parts List:
R1,3,5,7,9 = 22K? R2,8 = 680? R4,6 = 1? C1 = 4.7uF/16V C2,7 = 22uF/16V | C3,6 = 220nF C4,9 = 100nF C5,8 = 200uF/25V IC1-2 = TDA2030 / LM1875 Lsp = 8?/ 60W Loudspeaker |
Saturday, July 6, 2013
Build a MHz Oscillator using an ATtiny15
Most engineers will recognise the problem: Your circuit needs a stable 1 or 2 MHz clock generator (in the author’s case it was for a Pong game using an old AY3-8500). A suitable crystal is not to hand so you cobble together an RC oscillator (there are plenty of circuits for such a design). Now it turns out that you don’t have exactly the right capacitor so a preset pot is add e d to allow some adjustment . Before you know it the clock circuit is taking up more space on the board than you had hoped.
Providing the application does not demand a precise clock source a tiny 8-pin microcontroller may offer a better solution to the problem. It needs no additional external components and an old ATtiny15 can be found quite cheaply. Another advantage of the solution is that clock frequency adjustment does not involve changing external components and is not subject to component tolerances.
The microcontroller’s internal RC oscillator is already accurately calibrated to 1.6 MHz. With its inbuilt PLL, internal Timer 1 can achieve up to 25.6 MHz [2]. By configuring internal dividers the timer can output a frequency in range of roughly 50 kHz up to 12 MHz from an output pin. The difference between calculated and the actual output frequency increases at higher frequencies. A meaningful upper limit of about 2 MHz is a practical value and even at this frequency the deviation from the calculated value is about 15 %.
MHz Oscillator using an ATtiny15 Schematic

The circuit diagram could hardly be simpler, aside from the power supply connections the output signal on pin 6 (PB1) is the only other connection necessary.The example program, written in Assembler is just 15 lines long! With a program this short comments are almost super fluous but are included for clarity. The code can be downloaded from the Elektor website [1].
The program only needs to initialise the timer which then runs independently of processor control to output the clock sign al . The processor can then be put into sleep mode to memory used up the remaining 99 % is free for use for other tasks if required.
The OSCCAL register contains a calibration byte which allows some adjustment of the CPU clock. This gives a certain degree of fine tuning of the output frequency. A recommendation in the Atmel data sheet indicates that the CPU clock frequency should not be greater than 1.75 MHz otherwise timer operation cannot be guaranteed.
The more recent ATtiny45 can be substituted for the ATtiny15. In this case the CK SEL fuses should be set to put the chip’s Timer 1 into ATtiny15- compatible mode [3]. After adjustment to the program it will now be possible to obtain a higher (or more exact) frequency from the timer, the ATtiny45’s PLL can operate up to 64 MHz. Link
Subscribe to:
Posts (Atom)