Make Your Own Arduino Nano (DIY - Arduino Nano)
by Pratik Makwana in Circuits > Microcontrollers
73981 Views, 285 Favorites, 0 Comments
Make Your Own Arduino Nano (DIY - Arduino Nano)
In this instructable, I will show you how to make your very own Arduino Nano. I'm using laminator for the toner transfer method.
What things you will need:
- Copper - clad board (Dual Layer)
- Ferric Chloride (FeCl3)
- Acetone (Nail polish remover)
- Glossy Paper
- LASER Printer
- Marker Pen
- Scissors
- Plastic container
- Sand paper
- Safety gloves
- Latex gloves
- Saw - For copper board cutting
- Laminator or iron
Let's Do it...
Designing of the Circuit
Design schematic diagram in EDA tool (PCB Design Software).
List of EDA Tools (PCB Design Software):
- DipTrace
- EAGLE PCB Design
- Kicad EDA
- Express PCB
- Proteus PCB Design & Simulation software
- Altium Designer
- NI Multisim
You can select any one of them.
I prefer EAGLE PCB Design Software.
Designing of the PCB Layout
After designing of the schematic diagram, Now start designing of PCB Layout in the Eagle EDA tool (PCB Design Software). After that Take print out of PCB Layout on glossy paper.
Note: Use Only LASER printer only.
Remember, Before top layer printing. You need to mirror image of the top layer layout. otherwise, The circuit will be inverted..
Note: Scale Factor set to 1.
PCB Files (EAGLE PCB Files):
Cutting of Copper Board
Cut the copper board according PCB layout size. After cutting the paper, put this top layout on the top side of the PCB. Now put bottom layout paper on the bottom side of the PCB.
Toner Transfer Method
I'm using laminator for the toner transfer method. Laminator maximum temperature is 150 C (302 F). For the toner transfer method, required temperature is 210 C (410 F). So this laminator is slightly modified for the toner transfer method. I changed potentiometer of laminator for increment of laminator temperature. Now set the laminating machine temperature to its maximum value. Now use a laminator to transfer the toner to the glossy paper to the PCB. Make sure your copper board is as clean as possible. Now start laminating machine.
Etching Process
Before you start etching, check all the tracks. If any track broken, use permanent marker pen to draw a track with carefully. Use ferric chloride (FeCl3) as etchant. Get you ferric chloride(FeCl3) powder and mix with water in your plastic container.Now start to etching of PCB.
After etching process, use the acetone to clean it.
Drilling Process & Soldering Process
After cleaning of PCB. Now start drilling of copper board. After Drilling, Start soldering process.
After Soldering
After soldering, Start burning the bootloader on ATMega328-AU.
Burning the Bootloader on ATMega328-AU (Arduino Nano)
Connect Arduino UNO board to your computer. Start Arduino program and from examples choose "ArduinoISP" sketch and upload it to the Arduino UNO board. Make sure you select the correct board name and serial port. After uploading "ArduinoISP" sketch, Please connect Arduino UNO (Work as Master) with the Arduino Nano (Work as target) using SPI bus.
----------------------------------------------------------------------------------------------------------
Connections:
----------------------------------------------------------------------------------------------------------
Arduino UNO ------ Target AVR (Arduino Nano - ATMega328-AU)
----------------------------------------------------------------------------------------------------------
SS (Pin 10) ------ RESET (Pin 29)
MISO (Pin 11) ------ MISO (Pin 16)
MOSI (Pin 12) ------ MOSI (Pin 15)
SCK (Pin 13) ------ SCK (Pin 17)
5V ------ VCC
GND ------ GND
----------------------------------------------------------------------------------------------------------
After connections, Go to Arduino Software and
Select Tool ----- > Board ------ > Arduino Nano
Select Tool ----- > Port ------ > Select your Arduino UNO COM Port
Select Tool ----- > Programmer ------ > Arduino as ISP
After that,
Select Tool ----- > Burn Bootloader
Wait for "Done burning bootloader" message.
Testing of Arduino Nano
After burning the bootloader on ATMega328-AU (Arduino Nano), You have to upload your actual sketch for this Arduino nano to work on your Project. For that use USB to UART converter.
I'm using CP2102 USB to UART converter.
----------------------------------------------------------------------------------------------------------
Connections:
----------------------------------------------------------------------------------------------------------
USB to UART Converter (CP2102) ------ Arduino Nano
----------------------------------------------------------------------------------------------------------
VCC ------ VCC
TX ------ RX (Pin 30)
RX ------ TX (Pin 31)
DTR ------ RESET (Pin 29)
GND ------ GND
----------------------------------------------------------------------------------------------------------
After connections, Go to Arduino Software and
Select File ----- > Examples ------ > 01.Basics ------ > Blink
Select Tool ----- > Board ------ > Arduino Nano
Select Tool ----- > Port ------ > Select your Arduino UNO COM Port
Select Tool ----- > Programmer ------ > AVRISP mkll
After that,
Upload Blink Sketch to Arduino Nano.
Wait for "Done Uploading" message.
Job Done!