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 hour166
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
330 projects • 337 followers
Just your average MAKER
Contact

Comments

Please log in or sign up to comment.