A laptop power supply that has served its useful life in the original device is often sent to a landfill - and in vain. With proper modification, it can be adapted to 12 volt power, turning it into a universal source for auto electronics, LED strips, mini-PCs based on Raspberry Pi or even a tool charging station. The main advantage of such a modification is cheap and compact compared to industrial 12V power supplies of similar power.
However, the process requires not only a soldering iron and basic knowledge of electronics, but also an understanding switching power supply topologies. Errors here are fraught not only with failure of the unit, but also fire or damage to the connected equipment. In this article we will analyze three working methods of alteration (with replacement of feedback, modification of the +5V bus and use of a DC-DC converter), and we will also dwell in detail on calculation of components and testing the result.
Why exactly 12 volts: areas of application of the converted power supply
Voltage selection 12V is not accidental - it is the standard for most automotive systems, solar controllers and low-voltage devices. A converted laptop power supply can replace:
- 🚗 Car inverter — for powering a laptop, router or camera on the road without losses during the 12→220V conversion.
- ☀️ Source for solar power plant - paired with a battery 12V 100Ah and charge controller.
- 💻 Power supply for minicomputers (Raspberry Pi 4/5, Orange Pi, Odroid) with current up to 3–5A.
- 🔦 Driver for high-power LED strips (For example, SMD5050 60LED/m), where a stabilized voltage is required.
The key advantage over ready-made solutions is high efficiency (up to 85–90% for high-quality power supplies from Delta, Lite-On or Chicony) and short circuit protection, which cheap Chinese modules often lack. However, there are also limitations: most laptop power supplies provide 19V at a current of 2–4.5A, which after modification will give the maximum ~60–80W at 12V - this is enough for LED lighting, but not for powerful amplifiers.
- Autoelectronics
- solar system
- Minicomputer (RPi, Odroid)
- LED lighting
- Other
Analysis of the power supply circuit: what you need to know before modification
Before you take up the soldering iron, you must identify topology your power supply. Most laptop units are built according to the scheme flyback (reverse) with PWM controller (For example, UC3843, FAN7527 or OB2263). Key components that will need to be modified:
- 🔄 Feedback circuit (optocoupler + TL431) - responsible for stabilizing the output voltage.
- 🔋 Output divider (resistors next to TL431) - determines the output voltage level.
- 🛡️ Safety circuits (varistors, thermistors) - may operate falsely when the load changes.
To analyze the circuit you will need:
- Take a high-resolution photo of the board from both sides.
- Find datasheet on PWM controller (marking on a large chip next to the transformer).
- Test the circuits with a multimeter in
200Ωto identify the feedback resistors.
How to find the diagram of your power supply?
If there is a model marking on the board (for example, PA-1900-02 or ADP-65JH BB), look for it on websites BadCaps or Elektroda. Often they post schematic diagrams and photographs of boards with markings of elements.
⚠️ Attention: Power supplies with active PFC (power factor correction) it is not recommended to redo them - their circuit is more complicated, and the risk of a short circuit is higher. The presence of PFC can be determined by the large choke at the input and the microcircuit ICE3P0565 or similar.
Method 1: Rework through feedback modification (for experienced)
This method is suitable for blocks on TL431 or similar stabilizers with an external divider. The essence is change the division factor in the feedback circuit so that the PWM controller “thinks” that the output voltage is lower than the actual one and increases it to the desired level.
Algorithm of actions:
- Find the chip on the board TL431 (or its equivalent: KA431, AZ431). There will be two or three resistors nearby, forming a divider.
- Measure the resistance of the resistors (for example,
R1 = 10kΩ,R2 = 2.2kΩ). - Calculate new resistance
R2according to the formula:R2_new = R2_old * (V_out_new / V_out_old)To go from
19Von12V:R2_new = 2.2kΩ * (12/19) ≈ 1.4kΩ. - Replace the resistor
R2to the calculated value (or make it up from two series/parallel connected ones).
☑️ Preparing for feedback modification
⚠️ Attention: After replacing the resistor necessarily check the block under load! Connect 12V LED strip or car lamp 20W and measure the voltage with a multimeter for 10 minutes. If it "floats" more than ±0.5V, the filtering circuit needs to be modified (add capacitors to the output).
| Parameter | Original PSU (19V) | After rework (12V) |
|---|---|---|
| Max. current, A | 3.42 | 2.15 (power limited) |
| Max. power, W | 65 | ~50 (efficiency ~80%) |
| Ripple, mV | <100 | <150 (may increase) |
| Case temperature, °C | 45–50 | 50–60 (increase by 5–10°) |
Method 2: Using a DC-DC Buck Converter (For Beginners)
If you don’t want to understand the circuit, you can take a simpler route - add external DC-DC converter at the output of the block. This method is safer, since it does not affect the internal circuit of the power supply, but it has two disadvantages:
- ⚡ Power loss (Converter efficiency ~90%, final system efficiency ~75%).
- 💰 Additional costs per module (from 500 rub. per XL4015 at 5A).
Recommended modules for conversion:
- 🔹 XL4015 - cheap, but requires a radiator at currents above 3A.
- 🔹 LM2596 — simple, but the efficiency is lower (up to 85%).
- 🔹 MP2307 — compact, with short-circuit protection.
Connection diagram:
- Disconnect the power supply's output capacitor (if equipped) to avoid resonance.
- Connect
Vin+converter to+19VBP,Vin-- toGND. - Set the converter output voltage to
12.0Vtrimmer resistor (use a load10Ω/10Wfor fine adjustment). - Install the converter into the power supply housing, insulating it with hot glue.
To reduce ripple, add an electrolytic capacitor to the converter output 1000µF/25V and ceramic 0.1µF in parallel.
Method 3: +5V bus emulation (for blocks with additional pins)
Some power supplies (for example, from Dell or HP) have additional +5V output to power USB ports or control circuitry. If your power supply is one of these, you can “deceive” the protection circuit by applying 5V from an external source (for example, from the same LM7805).
Procedure:
- Find the contact on the power supply connector
+5V(often this is the middle contact). - Connect a stabilizer to it LM7805, powered from the main output
19Vthrough a resistor220Ω(to limit current). - Set the main voltage using the method from Method 1 (replacing the feedback resistor).
⚠️ Attention: This method does not work on all blocks! For example, BP from Lenovo with markings ADLX65NDC3A ignore the bus +5V and require feedback modification. Before starting work, check the diagram on forums (for example, on EEVblog).
Common mistakes and how to avoid them
Even experienced radio amateurs make mistakes when modifying the power supply. Here are the most critical of them:
- 🔥 Ignoring surge protection - if after modification the output voltage exceeds
14V, the connected electronics may burn out. Always test the unit under load with an oscilloscope! - 🛠️ Poor soldering - cold contacts lead to heating and open circuit. Use flux LTI-120 and a soldering iron with a power of at least
60W. - ⚡ Power mismatch - if the original power supply was on
65W, after the rework he will not be able to give for a long time12V/5A(this is60W, but taking into account losses maximum40–45W).
To minimize risks, follow this checklist:
☑️ Check before first use
If after turning on the unit turns off immediately, the probable cause is current protection tripping. In this case:
- Check the feedback circuit for a short circuit.
- Reduce the resistor value
R1in the divider by 10–20% (this will reduce the output voltage, but increase the maximum current). - Add a resistor
0.1Ω/5Winto the positive wire gap to limit the starting current.
Testing and operation: how to extend the life of a converted power supply
After successful modification, the block requires proper running-in and periodic maintenance. Here are the key recommendations:
- 📊 Load test - connect a load that consumes 80% of the maximum power (for example,
12V/3Afor a 60W PSU), and measure the voltage after 30 minutes. Drawdown more than0.3Vindicates a weak output filter. - 🌡️ Thermal control - if the body heats up higher
60°C, add active cooling (cooler 40×40mm on5V, powered from the same power supply). - 🔄 Cyclic check — once every 3 months, clean the board from dust and check the electrolytic capacitors for swelling.
For long-term use in a car:
- Use Schottky diode (For example, SB540) at the power supply input to protect against reverse voltage in case of incorrect connection to the battery.
- Install the fuse
5Ato the positive wire to the battery terminal. - If the unit will operate from solar panel, add DC-DC boost converter (For example, MT3608) to stabilize the input voltage in the range
10–14V.
A converted power supply is not designed to operate around the clock! Optimal cycle: 6–8 hours of operation with a cool-down break.
FAQ: answers to frequently asked questions
Is it possible to remake a power supply from any laptop, or are there exceptions?
Not all blocks can be remade. Exceptions:
- Blocks with active PFC (For example, Dell DA-2 or HP Smart).
- PSU with digital control (For example, Lenovo USB-C), where the feedback is implemented through a microcontroller.
- Ultra-compact units (e.g. for MacBook Air) - their power rarely exceeds
30W.
Before starting work, check the diagram on forums or in databases BadCaps.
How to calculate the maximum current after modification?
Use the formula:
I_max_12V = (P_nominal * Efficiency) / 12V
Where:
P_nominal— rated power of the power supply (indicated on the label).Efficiency— Efficiency (usually 0.8–0.85 for high-quality blocks).
Example: for power supply 19V/3.42A (65W) with efficiency 0.8:
I_max_12V = (65 * 0.8) / 12 ≈ 4.33A
The actual maximum current will be 10-15% lower due to losses in wires and connectors.
What should I do if the unit does not turn on after the modification?
Causes and solutions:
- Short circuit - use a multimeter to check the resistance between
+12VAndGND(should be >10kΩ). - Incorrect feedback modification — return the original resistors and recalculate the divider.
- Protection triggered - Disconnect the load and check the open circuit voltage.
- Breakdown of the key transistor — measure the drain-source resistance of the MOSFET (should be >1MΩ).
If the unit “beeps” when turned on, this is a sign unstable feedback. Increase the capacitance of the capacitor in the TL431 circuit to 1µF.
Is it possible to use a converted power supply to charge a car battery?
No! Redesigned power supply not intended for charging lead-acid batteries for several reasons:
- Missing current stabilization (required for proper charging).
- Voltage
12Vnot enough to fully charge (need13.8–14.4V). - No protection from reverse polarity (If connected incorrectly, the unit will fail).
To charge the battery, use specialized devices with three-stage charging (For example, CTEK MXS 5.0).
Which power supply is best for conversion?
Recommended models (taking into account the price/power/reliability ratio):
| PSU model | Initial parameters | Max. current after modification, A | Notes |
|---|---|---|---|
| Delta ADP-65JH BB | 19V/3.42A | 4.0 | Easy modification, reliable |
| Lite-On PA-1900-02 | 19V/4.74A | 5.5 | Requires replacement of output diodes |
| Chicony A15-120P1A | 19V/6.32A | 7.0 | Good cooling, but complex circuit |
| HP PA-1650-32HE | 18.5V/3.5A | 4.2 | Has a +5V bus to deceive the protection |
Avoid blocks without markings or with a suspiciously low price (for example, no-name models with AliExpress) - they are often assembled with cheap components and can catch fire if modified.