/BatterySense

Arduino library to monitor battery consumption

Primary LanguageC++GNU Lesser General Public License v3.0LGPL-3.0

Battery Build Status

This is a simple Arduino library to monitor battery consumption of your battery powered projects, being LiPo, LiIon, NiCd or any other battery type, single or multiple cells: if it can power your Arduino you can monitor it!

The principle is simple: we are going to measure our battery capacity by measuring the voltage across the battery terminals.

The big assumption here is that battery capacity is linearly correlated to its voltage: the assumption itself is wrong, but in most cases it's close enough to reality, especially when it comes to the battery higher capacity side.

In reality the relation between battery capacity and its voltage is better represented by a curve and there are many factors affecting it: current drawn, temperature, age, etc...

[!(http://www.philohome.com/batteries/discharge-750.gif)]

How to

The library requires at least 1 analog pin (we will call this the sense pin) and no less than 2 bits of info on your battery: the voltage you will consider the minimum acceptable level, below which your project/product becomes unreliable and should be shut down, and the maximum voltage you can expect when the battery is fully charged.

Additionally you can provide a second pin (either analog or digital) to activate the battery measurement circuit (we call it the activation pin), useful in all those situation where you can sacrifice a pin to further increase your battery duration.

If you want your readings to be more accurate we strongly suggest to calibrate the library providing your board reference voltage: most of the times you assume your board has exactly 5V between Vcc and GND, but this is rarely the case. To improve this we suggest to use the VoltageReference library to obtain a better calibration value for all analog readings.

The sense pin wiring can vary depending on your battery configuration, but here are a few examples based on the assumption you are using a 5V board: in case of a 3.3V board you should be performing the necessary adjustments.

Lesser than 5V, with voltage booster

Voltage sources made of single cell LiPo or LiIon, along with some single or multi cell NiCd configurations (like up to 3 AA or AAA), are not able to provide the suggested 5.0 volts input to your board and a voltage booster can solve your problem. What that means when it comes to measuring your battery level? We need to measure the battery voltage before it gets boosted, which means your sense pin must be connected between the battery positive terminal and the booster positive input and we don't need any additional components as the voltage is already in the acceptable range:

                                               +---------+
          +----------------------------- SENSE |         |
          |        +---------+                 |         |
  BAT+ ---+--- IN+ |   5V    | OUT+ ------- 5V | Arduino |
                   | BOOSTER |                 |         |
  BAT- ------- IN- |         | OUT- ------ GND |         |
                   +---------+                 +---------+

Higher than 5V, with internal voltage regulator

Voltage sources made of multiple cells LiPo or LiIon, along with some single or multi cell NiCd configurations (like up the classic 9V battery or 4+ AA or AAA), provide voltages above the 5.0 volts input: most of the Arduino boards are equipped with voltage regulators able to dissipate into heat all the excess. To measure such batteries we need to hook our sense pin before it gets regulated, between the battery positive terminal and the Arduino unregulated input VIN or RAW, but we require two resistors to reduce the voltage to acceptable values:

                         +---------+
  BAT+ ---+--------- VIN |         |
          |              |         |
         R1              |         |
          |              |         |
          +------- SENSE | Arduino |
          |              |         |
         R2              |         |
          |              |         |
  BAT- ------------- GND |         |
                         +---------+

The values of R1 and R2 determine the voltage ratio parameter for this library: for information about this value refer to the section below.

Because the resistors in this configuration will constantly draw power out of your battery, you shouldn't pick values under the 1k Ohm, or you'll deplenish your batteries much faster than normal. On the other end, going too high on the resistor values will impede the library to get accurate readings.

Higher than 5V, with external voltage regulator

Whenever your battery maximum voltage exceeds the onboard regulator (if there is any) an external voltage regulator is required. Once again, to measure such batteries we need to hook our sense pin before it gets regulated, between the battery positive terminal and the voltage regulator positive input VIN or RAW and, as before, we require two resistors to reduce the voltage to acceptable values:

+---------------------------------+
|                  +---------+    |         +---------+
| BAT+ ---+--- IN+ |         |    +-- SENSE |         |
|         |        |         |              |         |
|        R1        |         |              |         |
|         |        |         |              |         |
+---------+        |         | OUT+ ---- 5V | Arduino |
          |        |         |              |         |
         R2        |         |              |         |
          |        |         |              |         |
  BAT- ---+--- IN- |         | OUT- --- GND |         |
                   +---------+              +---------+

The values of R1 and R2 determine the voltage ratio parameter for this library: for information about this value refer to the section below.

Higher than 5V, activated on demand

Batteries are a precious resource and you want to prolonge their life as much as you can so, deplenish your batttery to determine its capacity is not desireable.

As a consequence of connecting the battery terminals through two resistors we are drawing some energy out of the battery: for a 9V battery and 1k Ohm for R1 and R2 you will be adding a constant 4.5mA current consumption to your circuit. Not a huge amount, but definitely not desiderable.

If you have an unused pin on your Arduino it will be easy to limit this additional current consumption to be drawn only when needed: during battery measurement. We will be turning the activation pin HIGH during battery measurement so that the voltage divider will be disconnected most of the time:

                         +---------+
  BAT+ ---+--------- VIN |         |
          |              |         |
         R1              |         |
          |              |         |
          +------- SENSE |         |
          |              | Arduino |
         R2              |         |
          |              |         |
         M1--------- ACT |         |
          |              |         |
  BAT- ------------- GND |         |
                         +---------+

In the above schematics M1 is a circuit which can connect or disconnect the sensing circuit depending on the voltage on ACT: the most common and cheap circuit is made of a n-channel MOSFET Q1, a 10-500 Ohm resistor R3 and a 5k-20k Ohm resistor R4:

  VDIV
    |
    Q1 --+-- R3 --- ACT
    |    |
    |   R4
    |    |
    +----+
    |
  BAT- 

Voltage divider ratio

Whenever your battery voltage is above your board voltage you need a voltage divider to constraint your readings withing the 0-5V range allowed by your Arduino and you will have to provide this library its ratio.

The voltage divider ratio is determined by the formula (R1 + R2) / R2: if you use two resistors of the same value the ratio will be 2, which can be interpreted as whatever value we read it will be half of the actual value. This allows us to sense batteries up to 10V. If you use a 22k Ohm resistor for R1 and a 10k Ohm for R2 than your voltage ratio will be 3.2 and you will be able to safely monitor a 12-15V battery.

You must select the resistors in order to get a ratio which will produce values between the 0-5V range at all the times and to obtain that the process is quite simple: divide your battery maximum voltage by 5V and you'll get the absolute minimum value for the voltage ratio, then pick any two resistors values whose combination produce a ratio equal or higher than the absolute minimum. For a 12V battery the abolute minimum voltage ratio is 12/5=2.4, meaning you can't use an split supply divider made of two equals resistors: you need R1 to be higher value than R2! Get this wrong and you will probably burn your sense pin.

The voltage divider total resistance, made of R1 + R2, will determine the current drawn from your battery by the sensing circuit: lower is the total resistance and more accurate are your readings, higher the resistance and less current is drawn from your battery. My suggestion is to keep this value within 20k-22k Ohm when using an always connected circuit and under 10k Ohm if you use an on-demand configuration.