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.

📊 What do you plan to use the converted power supply for?
  • 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:

  1. Take a high-resolution photo of the board from both sides.
  2. Find datasheet on PWM controller (marking on a large chip next to the transformer).
  3. 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:

  1. Find the chip on the board TL431 (or its equivalent: KA431, AZ431). There will be two or three resistors nearby, forming a divider.
  2. Measure the resistance of the resistors (for example, R1 = 10kΩ, R2 = 2.2kΩ).
  3. Calculate new resistance R2 according to the formula:
    R2_new = R2_old * (V_out_new / V_out_old)

    To go from 19V on 12V: R2_new = 2.2kΩ * (12/19) ≈ 1.4kΩ.

  4. Replace the resistor R2 to the calculated value (or make it up from two series/parallel connected ones).

☑️ Preparing for feedback modification

Done: 0 / 5

⚠️ 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).

ParameterOriginal PSU (19V)After rework (12V)
Max. current, A3.422.15 (power limited)
Max. power, W65~50 (efficiency ~80%)
Ripple, mV<100<150 (may increase)
Case temperature, °C45–5050–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:

  1. Disconnect the power supply's output capacitor (if equipped) to avoid resonance.
  2. Connect Vin+ converter to +19V BP, Vin- - to GND.
  3. Set the converter output voltage to 12.0V trimmer resistor (use a load 10Ω/10W for fine adjustment).
  4. 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:

  1. Find the contact on the power supply connector +5V (often this is the middle contact).
  2. Connect a stabilizer to it LM7805, powered from the main output 19V through a resistor 220Ω (to limit current).
  3. 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 time 12V/5A (this is 60W, but taking into account losses maximum 40–45W).

To minimize risks, follow this checklist:

☑️ Check before first use

Done: 0 / 5

If after turning on the unit turns off immediately, the probable cause is current protection tripping. In this case:

  1. Check the feedback circuit for a short circuit.
  2. Reduce the resistor value R1 in the divider by 10–20% (this will reduce the output voltage, but increase the maximum current).
  3. Add a resistor 0.1Ω/5W into 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/3A for a 60W PSU), and measure the voltage after 30 minutes. Drawdown more than 0.3V indicates a weak output filter.
  • 🌡️ Thermal control - if the body heats up higher 60°C, add active cooling (cooler 40×40mm on 5V, 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 5A to 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:

  1. Short circuit - use a multimeter to check the resistance between +12V And GND (should be >10kΩ).
  2. Incorrect feedback modification — return the original resistors and recalculate the divider.
  3. Protection triggered - Disconnect the load and check the open circuit voltage.
  4. 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 12V not enough to fully charge (need 13.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 modelInitial parametersMax. current after modification, ANotes
Delta ADP-65JH BB19V/3.42A4.0Easy modification, reliable
Lite-On PA-1900-0219V/4.74A5.5Requires replacement of output diodes
Chicony A15-120P1A19V/6.32A7.0Good cooling, but complex circuit
HP PA-1650-32HE18.5V/3.5A4.2Has 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.