Monitoring Battery Level, without wasting too much energy

  • Thread starter Thread starter barkly
  • Start date Start date
  • Tags Tags
    Battery Energy
AI Thread Summary
The discussion focuses on monitoring the battery levels of two 6V batteries charged by a solar panel while minimizing energy consumption. Suggestions include using micropower comparators like the MAX919 and MAX921, which can operate on a 3.3V rail without needing negative voltage rails. A voltage divider is recommended for measuring battery voltage, with the possibility of using a low-power timer to reduce monitoring frequency. Additionally, integrating a milliammeter in series can provide accurate current readings with minimal power usage. The conversation highlights the importance of selecting components with low standby currents to ensure efficient monitoring.
barkly
Messages
10
Reaction score
0
Hi,

I have a solar panel currently charging two 6V batteries after being sent through a solar regulator and was hoping to either monitor the battery levels or the voltage/current being output from the regulator. Was hoping to monitor this through a IOIO microprocessor that has analog inputs 0-3.3V or digital ins that register Hi for V>3.3V.

Any ideas? keeping in mind I want to limit the power consumption from this monitoring circuit.

Cheers
 
Engineering news on Phys.org
barkly said:
Hi,

I have a solar panel currently charging two 6V batteries after being sent through a solar regulator and was hoping to either monitor the battery levels or the voltage/current being output from the regulator. Was hoping to monitor this through a IOIO microprocessor that has analog inputs 0-3.3V or digital ins that register Hi for V>3.3V.

Any ideas? keeping in mind I want to limit the power consumption from this monitoring circuit.

Cheers

I've used a micropower comparator before to monitor the battery voltage in a small RF node. Let me look for the part number...
 
Wont I need a positive and negative rail to ensure the op amps operate though?
Did you just power from the microprocessor?
 
barkly said:
Wont I need a positive and negative rail to ensure the op amps operate though?
Did you just power from the microprocessor?

Are the two batteries separate or in series to make 12V?

You would power the comparator probably from the same 3.3V rail as the uC, so the output voltage can be compatible. No need for any negative rails here unless I'm missing something. Those comparators are rail-to-rail comparators (double check me on this by looking at their datasheets and application notes at the link I provided).
 
In series to make 12V.

Yer I just read the data sheet, your correct in them being rail-to-rail so can just tie negative input to GND.
 
can see this is going to be a problem with this part as the max in voltage is 5V. Does anyone have any experience with IC current sensors? What is the power usage on these components like?
 
should mention that the batterys are sealed lead
 
barkly said:
can see this is going to be a problem with this part as the max in voltage is 5V. Does anyone have any experience with IC current sensors? What is the power usage on these components like?

Do they show any applications with high-impedance voltage dividers? You don't need any bandwith in a battery level monitor...
 
  • #10
not that i can tell, starting to think voltage divider will be the best solution for now
 
  • #11
It strikes me that you only need to monitor at very long intervals (30minutes, perhaps). A very low power timer circuit can be used to turn on your main measuring and analysing circuits for a few ms every 30 minutes - the power drain would hardly even overtax a watch battery.
The processor will drain more current than a basic voltage divider on its input, surely.
 
  • #12
Theres an external battery, running into a IOIO which is connected to a android phone. I have a solar panel that runs into a solar regulater charging the external battery. Basically I am just wanting to get an idea on either the output of the solar regulator power or the external battery, without wasting to much energy as I already know the android phones battery status.
 
  • #13
In this case, a simple milliammeter in series would give you a very good idea and it would consume very little power.
 
  • #14
sophiecentaur said:
In this case, a simple milliammeter in series would give you a very good idea and it would consume very little power.

Was hoping to input it into the microprocessor so I can utilize the information in a program..
 
  • #15
barkly said:
Was hoping to input it into the microprocessor so I can utilize the information in a program..

If you really want to get that technical with it, there are a variety of battery/power monitoring ICs available with stand-by currents in the micro-amp range (I believe I've seen some with pico-amp stand-by ratings.)
 
  • #16
You already have an analog to digital sampling port on your micro, so I'd suggest making use of it (to reduce power consumption, you can turn off your A to D module and tri-state the input). I'd build a 2 or 2.5 or 3 to 1 voltage divider (say, with two 4k7, or a 3k6 and a 2k4, or a 3k6 and a 1k8) so you can get the measured voltage within range of your analog to digital input.

If you're concerned about the constant drain through the voltage divider (in spite of choosing values in the kOhm range), you could put in an N-channel MOSFET at the tail of the voltage divider. The MOSFET should be off until you drive the gate to 3.3V (do it through a small resistor, 1k or less) when it'll hopefully put the MOSFET in the linear region. By doing this, you'll introduce a slight resistance (see the MOSFET's datasheet for the Rds(on) parameter), but if you choose high enough values for your voltage divider, this should have fairly negligible impact.
 
Back
Top