Electronic – Portable 5V power supply

portablepower supply

I am usually in need of powering my microcontroller projects with 5V. Typically this is not a problem, as I use any power supply (converted PC power supply, wall adapter, USB, etc.).

However, when I need my projects to be portable and lightweight, I am not quite sure what the cheapest/easiest way to accomplish this would be. The additional requirement is that I would like to use 3.7V LiPo batteries. This is simply because they are much smaller than any other solution, and can pack a lot of power. Also because I have many lying around.

If I was using something higher than 5V, then I would just use the L7805 to drop it down, or some other solution. So how would I step up the voltage from a 3.7V battery to 5V in the cheapest and smallest way possible? Is there a widely used IC which accomplishes this task?

Best Answer

Two options for you:

  • One is to use a boost converter for ~3.7V to 5V (i.e. if the supply range is always below the required rail voltage) There are hundreds out there to choose from, you can get e.g. very simple fixed 5V boost regulators which only require a few external components (see TI, LT, ON Semi, Analog Devices, Microchip, Maxim, etc - they all make switching regulators).
    Or if your supply is above and below 5V over the battery discharge curve, then as Madmanguruman suggests, use a buck-boost/SEPIC/Cuk converter. Make sure the input range of the IC fits with your battery voltage range. There are plenty of questions on here that discuss the use of switching regulators in this type of situation, so I won't cover that again here.

  • The other is to use a microcontroller and surrounding ICs that run from +3.3V - then a simple LDO can be used, which at this drop (say for a Li-Ion from ~4.2V down to 3.5V or so to +3.3V - you can get LDOs with less than 100mV dropout voltage nowadays) will be efficient and simple. Nowadays +3.3V is very common, and many microcontrollers with a "nominal" 5V can run fine from 3.3V - a random example is the PIC16F1828 which boasts a 1.8V - 5.5V operation range. So check to see whether this might be an otpion with the chips you are using, or whether swapping a couple would be easy enough.

Related Topic