Skip to main content

Hacking a USB-C to slim tip adapter cable to charge the Thinkpad T450s

This hack is inspired by this post.

A year ago, I bought an adapter cable for my wife's Thinkpad X1 Carbon (2nd Gen) that allows her to power her laptop with a 60W-capable portable battery (20V x 3A). A USB-C cable goes from the battery into the adapter, which converts it to the slim tip output required by the laptop. Everything works out of the box, so I didn't give much thought about it.
Recently, I decided to buy a similar cable for my Thinkpad T450s. I know technically it should work because the T450s can go as low as 45W (20V x 2.25A) in terms of charging (though I have the 65W charger - 20V x 3.25A).  I went with another adapter cable because it was cheaper and also I prefer the single cable design.

So imagine my surprise when the cable came and I plugged it into my laptop and it didn't work! The power manager just cycle in and out of charging mode before giving up with an error message saying there is not enough power.

After much research and reading the Thinkwiki Power Connector page, I finally realized what was going on. The middle pin in the slim tip connector is hooked to ground via a tiny resistor. The value of the resistor tells the charging circuit what current to draw. If it's 120Ω, it will draw 2.25A (45W). If it's 280Ω, it will draw 3.25A (65W). If it's 550Ω, it will draw 4.5A (90W). So obviously the connector in the cable I received is the 550Ω/90W type. So it makes my T450s try to draw 4.5A for charging, which far exceeds the 3A that the battery is able to provide. So the battery drops voltage, which terminates the charging cycle.

(It also means my wife's cable has the 65W connector, which is out-of-spec, since the listing says it supports up to 90W. But turns out to be a blessing in disguise, so my wife was able to charge her laptop with a 60W battery out of the box).

So now I have 3 options:

1. Buy a new portable battery that can supply 90W (87W, or 20V x 4.35A will probably work).

2. Get a 45W charger, cut off the slim tip connector and splice it to the existing adapter cable.

3. Cut open the slim tip connector on the adapter cable and change the embedded resistor to reflect a lower wattage.

1) is obviously the easiest and most expensive option, 3) is the most laborious but least expensive option. After reading Marc's blog post, it gave me the confidence to try out 3).

I decided to mod the slim tip connector to 65W (280Ω) instead of 45W, because I can verify with my wife's setup that the 60W battery works for charging my laptop. Also, I have some spare 270Ω resistors lying around, which has a good chance of substituting for the 280Ω required.

First thing to do is to slice open the seams of the slim tip connector with a sharp pen knife:



The resistor is encased in some kind of resin:


After trying to use the pen knife to scrape away the resin, I decided it would be faster to use the soldering iron to melt away the resin instead. I focused on the area near the black wire to reveal the resistor:


It helps to have a piece of wet cloth nearby to clean away the melted resin on the tip of the soldering iron. Also a pair of sharp nose cutter is also invaluable in helping to clean up the residual resin as much as possible.

Here's the connector with the resistor removed:


You basically want to clear away enough resin so that there is adequate surface to solder on the new resistor.

Here's the removed resistor:


Here's the connector with the new resistor (270Ω) soldered.


At this point, I tested the connector with the 60W battery, and it worked flawlessly! I left it running for 10 minutes, charging the laptop while I maxed out the CPU and screen brightness, and it didn't miss a beat.

Now to wrap things up...

With the connector sitting in one half of the rubber enclosure, I added copious amount of hot glue into the crevices to give it strength. Then I folded in the other half of the enclosure, and secured the two halves together with some electrical tape.


I think hot-shrink tubing would have been a better choice, but since I didn't have the equipment for that, electrical tape would have to do.

That's it! Now I can charge my T450s with a portable battery.

Comments

Popular posts from this blog

Update: Line adapter for Ozito Blade Trimmer

Update (Dec 2021): If you access to a 3D printer, I would now recommend this solution , which makes it super easy to replace the trimmer line. I have been using it for a few months now with zero issue.

Attiny85 timer programming using Timer1

This Arduino sketch uses Timer1 to drive the LED blinker: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 /* * Program ATTiny85 to blink LED connected to PB1 at 1s interval. * Assumes ATTiny85 is running at 1MHz internal clock speed. */ #include <avr/io.h> #include <avr/wdt.h> #include <avr/sleep.h> #include <avr/interrupt.h> bool timer1 = false , led = true ; // Interrupt service routine for timer1 ISR(TIMER1_COMPA_vect) { timer1 = true ; } void setup() { // Setup output pins pinMode( 1 , OUTPUT); digitalWrite( 1 , led); set_sleep_mode(SLEEP_MODE_IDLE); // Setup timer1 to interrupt every second TCCR1 = 0 ; // Stop timer TCNT1 = 0 ; // Zero timer GTCCR = _BV(PSR1); // Reset prescaler OCR1A = 243 ; // T = prescaler / 1MHz = 0.004096s; OCR1A = (1s/T) - 1 = 243 OCR1C = 243 ; // Set to same value to reset timer1 to

3D Printer Filament Joiner

I have been looking at various ways of joining 3D printing filaments. One method involves running one end of a filament through a short PTFE tubing, melting it with a lighter or candle, retracting it back into the tubing and immediately plunging the filament to be fused into the tubing: One problem with this method is that you can't really control the temperature at which you melt the filament, so you frequently end up with a brittle joint that breaks upon the slightest bend. Aliexpress even sells a contraption that works along the same line. As it uses a lighter or candle as well, it suffers from the same weakness. I am not even sure why you need a special contraption when a short PTFE tubing will work just as well. Another method involves using shrink tubing/aluminium foil, and a heat gun: But a heat gun is rather expensive, so I wanted to explore other alternatives. The candle + PTFE tubing method actually works quite well when you happen to melt it at the rig