noneedforit
Published © LGPL

Diy Arduino (ZenoDruino)

Hey folks I am here with my design of arduino it is a very simple project simple soldering and all the components are in dip package.

IntermediateFull instructions provided398
Diy Arduino (ZenoDruino)

Things used in this project

Hardware components

ICStation Atmega 328P-Pu Ic
×1
Resistor 220 ohm
Resistor 220 ohm
×1
Resistor 1k ohm
Resistor 1k ohm
×1
16 MHz Crystal
16 MHz Crystal
×1
Linear Regulator (7805)
Linear Regulator (7805)
×1
Capacitor 22 pF
Capacitor 22 pF
×2
Capacitor 100 nF
Capacitor 100 nF
×1
Capacitor 10 µF
Capacitor 10 µF
×1
1N4007 – High Voltage, High Current Rated Diode
1N4007 – High Voltage, High Current Rated Diode
×1
Male-Header 36 Position 1 Row- Long (0.1")
Male-Header 36 Position 1 Row- Long (0.1")
×1
5 mm LED: Red
5 mm LED: Red
×1
5 mm LED: Green
5 mm LED: Green
×1
Arduino UNO
Arduino UNO
×1
IC & Component Socket, 14 Contacts
IC & Component Socket, 14 Contacts
×1
Custom PCB
Custom PCB
×1
DC Power Connector, Jack
DC Power Connector, Jack
×1
Ftdi Programmer
×1

Software apps and online services

Arduino IDE
Arduino IDE

Hand tools and fabrication machines

Soldering iron (generic)
Soldering iron (generic)
Solder Wire, Lead Free
Solder Wire, Lead Free
Solder Flux, Soldering
Solder Flux, Soldering
PCB Holder, Soldering Iron
PCB Holder, Soldering Iron

Story

Read more

Schematics

Pcb Gerber

Pcb Gerber File

Code

Arduino Code

C/C++
Arduino Blink Code
//feel free to contact 
//sreeramaj53@gmail.com
//www.youtube.com/ZenoModiff

int led = 13;
void setup()

{

pinMode(13, OUTPUT);

}

void loop ()
{

digitalWrite(13, HIGH);
delay(1000);
digitalWrite(13, LOW);
delay(1000);

}

Credits

noneedforit

noneedforit

13 projects • 9 followers

Comments