Powerbank that does not stop

Hi everyone,

i'm looking to power my Arduino (and also a raspberry for another project) with a power bank, the ones that are used to charge smartphones.
I bought a Li-Po 10 000mAh 5V 3.1A one, as you can see in the picture.

The problem is there is a system that cut the power when the power consumption is too low, and apparently one arduino uno is too low. So my battery turns off after 30sec...
Do you know any battery that doesn't have this system ??

Anyway, I opened it to see what's inside and if it's possible to shortcut this system. Turns out it's written 3.7V 5000mAh battery... Am I being duped ?

And if someone knows any components on this electronics board, in order to shortcut the automatic power off... :slight_smile:

simmoinard:
Anyway, I opened it to see what's inside and if it's possible to shortcut this system. Turns out it's written 3.7V 5000mAh battery... Am I being duped ?

You bet! :grinning:

It's like the famous "internet inch" used in certain - err - physical measurements. :sunglasses:

I understand this gadget apparently does not have the shut-off problem, but you might want to research it further:

eBay

Ahah thank's !

Just to be sure :
It is marked inside 3.7V - 5000mAh - 18.5Wh.

My voltmeter shows 3.7V at the output of the battery, and 5V at the output of the USB port.
So 18.5Wh/5V = 3700mAh is my real battery on the USB port ??

Damn it.

Put a power on led across the power input to draw more current to keep the charge bank on.

Thank's, this is a good idea for testing but I'd like to save battery as much as possible... :wink:

For my arduino project I use Low Power library
For my raspberry porject I use Witty pi

Paul__B:
I understand this gadget apparently does not have the shut-off problem, but you might want to research it further

But the one of that gadget I tested had another problem.

When the battery goes flat, it turns off, but then as the battery recovers it turns back on again. So you hqave whatever device its powering cycle on\off a few times as the battery is dying. Not helpful behaviour.

The Xiaomi Mi Powerbanks, I have the 20000mahr one, have a low-current discharge mode.

I solved this problem of the unwanted auto-shutoff with a simple circuit which can be "tuned" to minimise the power waste:

https://forum.arduino.cc/index.php?topic=497195.0

Basically a power bank is designed to charge mobile phones. Not for any other purpose, and typically
require modification to disable the auto-shut-off, which may be possible if you can figure out the circuit.

Annoying, basically.

A power bank is not a power supply, its a LiPo battery charger...

4 NiMH AA cells in a holder provide about 5.2V without such issues.

MarkT:
4 NiMH AA cells in a holder provide about 5.2V without such issues.

NiMh batteries, and the low self discharge type in particular, are my favourite power source for projects.

A lot safer than lithium batteries and none of the problems arranging for a safe cutoff voltage when something is left on.

Thank's everybody for the answers.

@6v6gt it is interesting, but as I understood it may not work with my project as the arduino can go in low power for a long time, more than 2sec.

@srnet, it is said in the Powerbanks 2, 2C, 2S, and 3 that it effectively works with systems such as bluetooth headset, smartwatch, etc : https://www.mi.com/fr/battery2c
If it's really 20000mAh, For 25€ it looks very good ! I'll try it !

I'll try also the NiMh batteries.
Thank's for the info!

UUGear’s New Witty Pi 3 Provides RTC and Power Management to the Raspberry Pi
UUGear, known for their add-on boards, have released a new version of their Witty Pi board for the Raspberry Pi. According to UUGear,
UUGear, known for its add-on boards, has released a new version of their Witty Pi board for the Raspberry Pi. According to the company, the Witty Pi 3 is descended from the previous version and adds an RTC and power management options for the Raspberry Pi, including the ability to define complex on/off sequences using simple scripts. The board is compatible with any Pi with a 40-pin header, which is pretty much every board in the product line.

On the hardware side, the Witty Pi 3 is outfitted with the same DS3231SN RTC chip as the previous versions, along with an ATtiny841 microcontroller for more complex applications, micro USB port (power/programming), and an onboard LM29150 LDO voltage regulator, which can handle up to 26V from a myriad of battery sources. There’s also a slot for a CR2032 battery (for RTC), and no jumpers to mess with, as all configuration is done via I2C, while a simple switch safely turns the Raspberry Pi’s power on or off if needed.

simmoinard:
. . .
@6v6gt it is interesting, but as I understood it may not work with my project as the arduino can go in low power for a long time, more than 2sec.
. . .

This is not correct. The load that that circuit puts across the power bank, to keep it alive, is completely independent of the arduino or any other load that you may put on the power bank.

If it is a really low power project, then maybe normal alkaline batteries may be a good alternative. For example, I have a barebones arduino with a radio module. It wakes up and transmits once every 32 seconds. The batteries are still good after 2 years.

@srnet

When the battery goes flat, it turns off, but then as the battery recovers it turns back on again. So you hqave whatever device its powering cycle on\off a few times as the battery is dying. Not helpful behaviour.

I have one of these and have only begun to test it. Reading the documents I know there is a circuit that will disconnect the battery when the battery voltage is so low there is a risk of permanently damaging the battery.
Is this what you are referring to or is there another issue I should look for?

Thanks

John