PIKA BANK Portable 5V Power Supply

by Arnov Sharma in Circuits > Electronics

927 Views, 9 Favorites, 0 Comments

PIKA BANK Portable 5V Power Supply

po.jpg
Pika Bank Powerbank From Scratch
24.gif
13 (50).gif

Good day, and welcome back.

Pika Bank is an interesting power-related project. A portable 5V power source called Pika Bank is designed to power 5V devices including microcontrollers, DEV boards, smartphones, and other similar devices.

The name PIKA is a play on the name of the well-known anime character Pikachu from the Pokemon series. Thunderbolt is one of Pikachu's attacks, and he is an electric-type Pokemon. This device is similar and can supply a steady voltage for the operation of XYZ 5V devices.

It functions essentially as a power bank because it has an IP5306 IC, a power management IC that is frequently used in commercial power bank circuits.

This Instructables is about the construction of this power bank, so let's start with the built.

Supplies

The following are the materials used in this built:

  • Custom PCBs
  • IP5306 IC
  • 1uF 0805 Package Capacitors
  • 2R 1206 Package Resistors
  • 1uH Inductor
  • USB Port
  • USB Type C
  • SMD 18650 Cell Holder
  • BLUE 10mm LEDs

Schematic and Design

SCH_page-0001.jpg
Capture.JPG

In order to power a range of 5V-operated devices, we start by designing the schematic for the PCB, which includes the IP5306 IC, a power management IC with a 3.7V input and a stable 5V output.

I have used this IC in many of my previous projects, which you can check out here-

https://www.instructables.com/OverEngineered-Pen-Holder-20/

https://www.instructables.com/CONE-LAMP-With-XIAO/

https://www.instructables.com/XIAO-Room-TEMP-and-HUMIDITY-Meter/

The IP5306 IC is placed first in the schematic, along with a few capacitors between charging IN and GND on the input side and a few between the 5V pin and GND on the output side.

A 18650 battery holder, a type C port for charging, and a USB port for 5V output are all placed on the bottom side of the PCB.

Moreover, two 10mm LEDs have been added to the board's top side, near the pickachu's cheek.

The design was finalized and then sent to PCBWAY for samples.

PCBWAY Service

01 (48).gif
02 (52).gif
IMG_20230923_003217.jpg

PCBWAY provided the PCBs for this project; we uploaded the Gerber data to their PCB Quote page and placed an order for yellow solder masks with white silkscreen.

We received the PCBs in less than a week, which was extremely fast, and the quality was excellent as usual.

I've been using their service for a while now, and it's always excellent.

https://www.pcbway.com/

Check out PCBWAY for great PCB service at a low cost.

Solder Paste Dispensing Process

03 (51).gif

Using a solder paste dispensing needle, we first apply solder paste to each component pad. The standard 63/37 Sn/Pb solder paste ratio is being applied.

Pick and Place Process

04 (51).gif

Following the application of solder paste, each component is added one at a time using an ESD tweezer; in this case, all of the capacitors, inductors, integrated circuits, and resistors are positioned where they are supposed to be.

Reflow Station

05 (52).gif

For the reflow process, we employ a hot air station that blows hot air at a temperature greater than 300 degrees Celsius, melting the solder paste and permanently securing the components to their pads.

Adding Type C Port

06 (54).gif
07 (54).gif
08 (54).gif

After adding SMD components on the top side of the PCB, we move on to adding components on the bottom side.

We begin by first applying solder paste with the solder paste dispensing needle on the Type C USB pads.

After that, we use the hot air station to solder the USB port into location.

THT Components

09 (54).gif
10 (49).gif
11 (50).gif

Using a soldering iron, we attach the THT components—the USB Port and the Lithium Cell 18650 Holder—on the bottom side of the device after attaching the Type C Port.

After using a soldering iron to secure the 10mm LEDs in place from the top side of the PCB, we remove the extra leads from the LEDs.

The circuit is now ready.

Power Source and Testing

12 (51).gif
13 (50).gif
14 (54).gif
15 (50).gif
16 (49).gif

A 3.7V, 2900mAh lithium cell is being used to power this whole setup.

We place the lithium cell in its SMD Holder in the correct polarity and press the toggle switch once to turn on the 10mm LED, indicating that the circuit is operational.

The output voltage was then tested with a multimeter, and 5.1V was observed.

After measuring the voltage, we use a USB tester to check the voltage coming from the USB port and discover that it is also 5.1V.

Powering an Arduino

17 (43).gif
18 (41).gif
19 (39).gif

Now that this circuit is working, we can use it to power any MCU that requires 5 volts.

In order to verify this, we connect jumper wires to the Pika Bank's output terminals and connect them to the VCC and GND terminals of an Arduino Nano.

Below is the code that was used; the LED and Blink Sketch are connected to the Nano's D2 Pin.

void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(2, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
digitalWrite(2, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(2, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}

The setup was successful once the program was uploaded to an Arduino Nano and the MCU was powered by a Pika Bank.

As a result, we may utilize this device to power projects like these.

Running Raspberry Pi Through Pika Bank

21 (27).gif

In order to power the Raspberry Pi Model 4B, we connect a Type C cable to the USB port, and it turns ON as well.

Charging Smartphone

22 (24).gif
23 (21).gif

At last, we connect a smartphone with the Type C cable, and it charges as well.

It should come as no surprise that the IP5303 utilized in this project can be used as a mobile charger or a reliable 5V power supply since it is originally a power management IC that is frequently used in commercial power banks.

Conclusion

Pika Bank Powerbank From Scratch
IMG_20230924_211051.jpg

Overall, this arrangement is functional and capable of powering a variety of devices, including an Arduino board and a mobile phone. For the majority of gadgets, it can supply stable 5V output. The system can only output a maximum current of 2A, which is fine in most situations but not if we wish to drive more powerful devices like an LCD display or LED matrix.

Thanks for getting this far; please leave a comment if you need any help with this project.

Special thanks to PCBWAY for supporting this project; do check them out for great PCB service at a lower cost.

Thanks again, and I will be back with a new project soon.