108

Lots of new batteries (for mobile devices, MP3 players, etc) have connectors with 3 pins. I would like to know what is the purpose of this and how should I use these three pins?

They are usually marked as (+) plus, (-) minus, and T.

user151324
  • 780
  • 3
  • 12
  • 21
adopilot
  • 1,183
  • 2
  • 7
  • 7
  • Where have you seen the third pin? Im interested in it. – Dean Feb 23 '11 at 10:14
  • Canon NB-4L for example – Martin Feb 23 '11 at 13:20
  • Roomba batteries too. Can't gut them and replace the internals without making sure you hook that third contact back up. – AngryEE Feb 23 '11 at 14:51
  • 3
    In addition to all the answers, sometimes it's just to provide a more stable mounting to the PCB. I deal in Varta Mempac memory batteries for an FM tuner, with two positive and one negative pins. They're large enough that two pins wouldn't be secure. – user207421 May 26 '13 at 01:50
  • 1
    I have a battery with + - **C** T, and I've [seen](https://en.wikipedia.org/wiki/Battery_%28electricity%29#/media/File:2011-04-04_18-35-26_267.jpg) a battery with + - **D** T. I wonder what the C and D stand for? – jpaugh Dec 03 '16 at 18:44
  • SanDisk sansa battery from the 90's has 3 contacts – Joe Phillips Aug 05 '17 at 20:39
  • Some mobile phones also have an NFC antenna in the battery like the Samsung galaxy note4. The battery comes with 4 pins. – USER249 Jul 20 '19 at 15:13
  • Take an old one apart and find out! – Elliptical view Oct 09 '20 at 20:09

5 Answers5

89

The third pin is usually for an internal temperature sensor, to ensure safety during charging. Cheap knock-off batteries sometimes have a dummy sensor that returns a "temp OK" value regardless of actual temperature.
Some higher-end batteries have internal intelligence for charge control and status monitoring, in which case the third pin is for communications.

mikeselectricstuff
  • 10,655
  • 33
  • 34
  • Ohh that makes sense! I'm retracting my answer. – drxzcl Feb 23 '11 at 09:37
  • 5
    Yep. The "T" stands for "Temperature" (Or "Thermistor"). Normally, it's a thermistor. – Connor Wolf Feb 23 '11 at 11:26
  • 9
    What about the **fourth** pin? On some mobile phone batteries there is a terminal for identification. It is wired to a resistor, and by measuring the resistance, the phone know whether the battery complies. I do not remember where I read about that, however. – Vorac Jul 04 '12 at 14:13
  • 2
    Also a possibility: OneWire verification chip, to make sure the battery is one authorized by the manufacturer: http://www.maximintegrated.com/en/products/comms/one-wire/print-cartidge-id.html (this example is for printer cartriges, but I'm sure others exist.) – TheDoctor Jul 27 '15 at 14:44
  • What is the return/resistor value of "Temp OK"? – Codebeat Dec 18 '17 at 20:30
49

That third contact is connected to an internal thermistor, enabling the charger to measure the battery temperature.

enter image description here

Leon Heller
  • 38,774
  • 2
  • 60
  • 96
16

In mobile phones, some Li+ battery packs have 3 terminals. Two possibilities:

  • positive, negative, thermistor (as was already mentioned in previous answers)
  • positive, negative, 1-wire bus. The latter is a digital communication bus that’s connected to a gas gauge IC inside the pack.

If you want to explore what’s inside single-cell Li+ battery packs, look-up bq27000 gas gauge IC and associated application notes. Could be a good starting point.

Some packs have 4 terminals: positive, negative, SDA, SCL. The latter 2 lines are I2C or SMBus. Look up the bq27200 gas gauge IC (shares datasheet with bq27000).

EDIT: This was written as an answer to a duplicate question, which got merged with this one.

Nick Alexeev
  • 37,739
  • 17
  • 97
  • 230
  • Do you know any actual battery models which carry a BQ27000-like chip inside and expose a communication pin? – KT. Nov 22 '18 at 13:26
  • 2
    @KT. Here's a [teardown](https://ripitapart.com/2014/02/12/looking-inside-an-iphone-44s-battery/) of the iPhone 4 battery which has got a bq27541. Here's a [write-up](https://docs.microsoft.com/en-us/windows-hardware/test/hlk/getstarted/battery-blank-information-guide#designing-a-battery-blank---an-example) by Microsoft about adding a battery gauge to a power supply for testing and development purposes. – Nick Alexeev Dec 16 '18 at 22:17
14

For Nokia batteries, one of the pins may be a BSI (Battery Size Indicator) pin, which contains a fixed resistor to ground, enabling the handset to identify which battery is connected. Examples of BSI resistor values include:

 - BMC-2  3k3  NiMH   640mAh
 - BMC-3  5k6  NiMH   900mAh
 - BLD-3  22k  Li-Ion 780mAh
 - BL-4B  68k  Li-Ion 700mAh
 - BL-5B  75k  Li-Ion 820mAh
 - BL-4U  82k  Li-Ion 1000mAh
 - BL-5C  82k  Li-Ion 1050mAh
 - BL-4J  100k Li-Ion 1200mAh
 - BL-5J  110k Li-Ion 1450mAh

See also: BSI - cpkb.org

PkP
  • 7,567
  • 2
  • 23
  • 42
4

The third pin is usually found on Li-Poly, or Lithium Polymer batteries and is required in order to charge the battery safely. Because these batteries are usually multi-cell, the third pin is used for balancing the charge between each of the cells.

Richard
  • 167
  • 4
  • 1
    the only thing that sounds wrong here is that my balancing LiPo battery charger uses *four* pins, not one. How can they do the balancing with only one pin in cell phones? – Dave Feb 23 '11 at 18:19
  • 9
    Cell phones normally use single cell batteries, so it can't be for balancing purposes. – Connor Wolf Feb 23 '11 at 21:58
  • @Dave/@Fake Name - good points. I stand corrected :) – Richard Mar 01 '11 at 09:33
  • I have seen dual cell LiPo batteries that had the balancing connection. However these would normally not be labelled T. The OP does not specify only cell phones so we cannot work from that assumption. – KalleMP Dec 27 '17 at 18:51