Electro BOY
Published © GPL3+

I Made My own ARDUINO Uno Board

A compatible cheap and fully working Arduino board with a lots of traces and schematics. This is one I want for my projects.

IntermediateFull instructions provided2 hours1,798
I Made My own ARDUINO Uno Board

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1

Software apps and online services

EasyEDA
JLCPCB EasyEDA
Arduino IDE
Arduino IDE

Hand tools and fabrication machines

Soldering iron (generic)
Soldering iron (generic)
Hot Air Station, Industrial
Hot Air Station, Industrial
Solder Wire, Lead Free
Solder Wire, Lead Free

Story

Read more

Schematics

Circuit PDF

Code

Try code

Arduino
This is the blink code which allows you to turn on/off the onboard led and through this we can check the board working.
*/

// the setup function runs once when you press reset or power the board
void setup() {
  // initialize digital pin LED_BUILTIN as an output.
  pinMode(LED_BUILTIN, OUTPUT);
}

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

Credits

Electro BOY

Electro BOY

57 projects • 52 followers
Electronics is my passion. I am not professional, Always learning something new. I am good at soldering, designing pcb, Arduino programing.

Comments