Arnov Sharma
Published © MIT

PIKA BANK Portable 5V Power Supply

A portable power source for 5V Devices, it have USB and can be use to charge smartphones or even power Microcontrollers or DEV Boards.

BeginnerFull instructions provided1 hour176
PIKA BANK Portable 5V Power Supply

Things used in this project

Story

Read more

Schematics

sch

Code

Blink Sketch

C/C++
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
}

Credits

Arnov Sharma
345 projects • 353 followers
I'm Arnov. I build, design, and experiment with tech—3D printing, PCB design, and retro consoles are my jam.

Comments