Introduction: How to Make Arduino Uno Clone Board.

This is Arduino Uno compatible board having micro usb for power and ch340g for programming. Lightweight and powerful.

Supplies

1) Solder iron

2) Solder wire

3) Solder flux

4) Other Soldering accessories

5) Hot air Gun

6) Hot plate soldering iron

Step 1: Project Info

Hello guys, in this tutorial we will discuss about Arduino circuit and share its Gerber files and bootloader info with you. We will construct the circuit using EasyEDA. Then we will convert the schematics into Gerber file. This PCB cannot be designed using homemade PCB fabrication method; therefore, we will use JLCPCB (China pcb manufacturer) to get professional PCB just in $2.

Step 2: About Arduino

The pcb board consisting Atmega328p (8-bit microcontroller) as a brain of it, have 32Kb flash memory, 2Kb Sram, 1Kb EEPROM, 14 Digital input/output pins (6PWM), 6 Analog pins and 8Mhz internal clock.

external clock up to 20Mhz but commonly 16Mhz is used for better performance.

Step 3: Build Up and Components

Here we are making a simplified and powerful version of Arduino. The output will be same as original one. We will use basic components to make this board fully compatible with Arduino. Here is the list of components that will be used to make this PCB:

1) AtMega328p (SMD version)

2) CH340G Usb to TTL (For programming)

3) Micro USB socket

4) 100nF (104) capacitor

5) 22pf capacitor

6) 12Mhz crystal

7) 16Mhz crystal

8) 220-ohm resistor

9) 1k resistor

10) 10k resistor

11) 603 smd led white

12) Pin headers

13) Ams1117 3.3volt

14) Ams1117 5volt

Step 4: Component’s Description

ATMega328p is the main microcontroller unit and 16mhz crystal with 22pf capacitors are used to generate proper clock.ch340g is used to program this Arduino chip using TXD and RXD pins, 22pf capacitor with 12mhz crystal oscillator is used for proper clock in ch340g. Here we are using micro usb to power 5volt directly from mobile charger, 100nf capacitors as filters can reject the distortion frequencies (if generated). 1k resistor are used with TX and RX pins. 10k resistor is used as a pulldown resistor with reset tactile switch. Ams1117 regulator with some capacitors gives stable 3.3volts and 5volt output. Smd led indicates the power input.

Step 5: Circuit Diagram:

Step 6: Circuit Description:

Our Arduino board is a clone, to upload the code inside Arduino chip we need a Usb to TTL converter IC. Here in this board, we are using Ch340g, helps to upload program in Arduino using compatible software. Our board is simple but powerful and have more features. You have to install CH341 drivers from google in order to program this Arduino.

Step 7: Burning Bootloader:

We will upload Arduino UNO bootloader in this blank Atmega328p-au chip. To burn bootloader, follow these steps and watch our video on YouTube.

1) Connect the original Arduino Uno to your pc using cable.

2) Now upload the ARDUINO ISP code in this Arduino from examples.

3) Connect the 2nd Uno according to this schematic.

4) Just change the programmer to Arduino as ISP and from the tools option click on burn bootloader.

5) After burning bootloader safely, now we can use our own Arduino as original one.

Step 8: Video:

Step 9: Uploading First Sketch Using Ch340g:

After burning bootloader successfully, we can upload any sketch in this Arduino microcontroller. Just plug the micro usb and select the board to Arduino and port accordingly.

Now set the programmer as AVR ISP. And upload the code. We can also upload the code using Android mobile. Arduino Droid offers same options on android devices as on Arduino IDE.

Step 10: Try to Upload Simple Sketch First:

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

Step 11: Gerber Files:

Step 12: About JLCPCB:

JLCPCB is the one of the most popular PCB makers. Price is just $2 for 2, 4 and 6 layer PCB. They just launched new purple solder mask, aluminum Pcb and 3d printing service in very low cost. Pcb quality is not compromised at any cost. Check them out right now from Here.https://jlcpcb.com/IAT

Sign up using this link and get $30 worth PCB coupon free, Order PCB and enjoy the service of JLCPCB.

Step 13: Future Updates:

we will upgrade this board in terms of hardware by adding a Usb type c and WI-FI compatibility. Keeping the board size minimum using 4, 6 layer pcb.

Step 14: More Arduino Circuits:

1) Arduino IR remote decoder.

2) Arduino based Inductance meter.

3) Remote control electric board project using Arduino.

Think you enjoy my work, stay tuned. Follow us on Instagram (sagar_saini_7294),Hackaday and hackaday.