Skip to main content

1.5v to 50v step up

1.5V to 50v step up perfect circuit without ic
Needed
Inductor 220v-470v

220K resistor
100 k resistor
1 K resistor
2N3906 transistor
2N3904 transistor
1N4148 diode
Zener diode

Now the time for circuit design

Now you can able to do a step up circuit it can work 10 minutes only because 1.5v battery is weak.

EXPLAIN
Inductor use for

I dont like to use inductors. Mostly because I tend to stick to digital circuits. But I’ve used them sometimes for creating filters or oscillators. And that is what they are mostly used for. Filters and oscillators. You often find inductors in analog AC electronics such as radio equipment.

The inductor

An inductor is just a coil of wire around some kind of core. The core could be just air or it could be a magnet. When you apply a current through the inductor, a magnetic field is created around it. By using a magnetic core the magnetic field will be much much much stronger.

Inductor do

The inductor is similar to the opposite of a capacitor.
In series it will resist alternating currents and let direct currents flow free. It’s like a bully component. It will mess with the alternating currents. But the direct current he will let be.

Type Designator: 2N3906
Material of Transistor: Si
Polarity: PNP
Maximum Collector Power Dissipation (Pc): 0.31 W
Maximum Collector-Base Voltage |Vcb|: 40 V
Maximum Collector-Emitter Voltage |Vce|: 40 V
Maximum Emitter-Base Voltage |Veb|: 5 V
Maximum Collector Current |Ic max|: 0.2 A
Max. Operating Junction Temperature (Tj): 135 °C
Transition Frequency (ft): 250 MHz
Collector Capacitance (Cc): 5 pF
Forward Current Transfer Ratio (hFE), MIN: 100

Noise Figure, dB: -


Type Designator: 2N3904
Material of Transistor: Si
Polarity: NPN
Maximum Collector Power Dissipation (Pc): 0.31 W
Maximum Collector-Base Voltage |Vcb|: 60 V
Maximum Collector-Emitter Voltage |Vce|: 40 V
Maximum Emitter-Base Voltage |Veb|: 6 V
Maximum Collector Current |Ic max|: 0.2 A
Max. Operating Junction Temperature (Tj): 135 °C
Transition Frequency (ft): 300 MHz
Collector Capacitance (Cc): 4 pF
Forward Current Transfer Ratio (hFE), MIN: 40

Noise Figure, dB: -

Comments

Popular posts from this blog

Arduino colour sensor and servo pro

Colour sensor with servo project Making All we need for this project is one color sensor (TCS3200) and two hobbyist servo motors, which makes this project quite simple but yet very fun to build it. In the first place, using the Solidworks 3D modeling software I made the design of the color sorter and here’s its working principle Initially, the colored skittles which are held in the charger drop into the platform attached on the top servo motor.Then the servo motor rotates and brings the skittle to the color sensor which detects its color.After that the bottom servo motor rotates to the particular position and then the top servo motor rotates again till the skittle drop into the guide rail. Connecting method The code is below /* Arduino Project - Color Sorting Machine * * by Dejan Nedelkovski, www.HowToMechatronics.com * */ #include <Servo.h> #define S0 2 #define S1 3 #define S2 4 #define S3 5 #define sensorOut 6 Servo topServo; Servo b...

220v ac to 5v dc without transformer

220v ac to 5v dc converted circuit Needed 4*1N4007 diode 100 ohm 1W 470k 1W 225k/400v capasitor 470uf/100v capasitor 220ohm resistor 15v 1W diode led 10uf 25v capasitor 7805 ic 1uf 10v Now the time for circuit design This is the simplest way for converting 220 ac volts to 5v dc volts (usb current) it is use for mobile phone charger and power bank charger. Capasitor in this circuit for give smooth current. Diode in this circuit for convert ac to dc. (Diode bridge)   Capasitor in this circuit. Capacitors in DC Circuits. Capacitors do not play an important role in DC circuits because it is impossible for a steady current to flow across acapacitor. If an uncharged capacitor is connected across the terminals of a battery of voltage then a transient current flows as the capacitor plates charge up. Diode in this circuit for. Diodes can be used as rectifiers, signal limiters, voltage regulators, switches, signal modulators, sign...

how to fire a matchstrick wirelessly using android phone

Copper wire:0.5mm/1mm Copper wire:0.1-0.4mm Motor Arduino esp8266 12E 5v relay module Alkaline battery:5v-9v AA battery:3v Android phone Blynk application No worry about this circuit because this is 100% working and tested. The basic consept of this circuit is below This circuit is possible because mini copper wire get more heat than the bigger wire. Codeing method First you install arduino ide on your pc Then copy and paste this code in your arduino #define BLYNK_PRINT Serial    // Comment this out to disable prints and save space #include <ESP8266WiFi.h> #include <BlynkSimpleEsp8266.h> // You should get Auth Token in the Blynk App. // Go to the Project Settings (nut icon). char auth[] = "YourAuthToken"; // Your WiFi credentials. // Set password to "" for open networks. char ssid[] = "YourNetworkName"; char pass[] = "YourPassword"; void setup() {   Serial.begi...