zhaoshentech
Published © CC BY

DipUno

An Arduino UNO made of DIP and through-hole components.

IntermediateShowcase (no instructions)Over 1 day4,261
DipUno

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
Custom fabricated PCB
OSH Park Custom fabricated PCB
×1
Capacitor 56 pF
×2
Capacitor 0.1 uF
×5
Capacitor 10 uF
×2
1N4001-G
×1
3 mm LED: Yellow
3 mm LED: Yellow
×1
3 mm LED: Green
3 mm LED: Green
×1
Polyfuse
×1
Screw terminal
×1
Barrel Jack Connector
×1
Pin Socket 1X06 Vertical
×2
Pin Socket 1X08 Vertical
×1
Pin Socket 1X10 Vertical
×1
Pin Header 1X06 Horizontal
×1
Pin Header 2X03 Vertical
×1
Resistor 10k ohm
Resistor 10k ohm
×1
Resistor 330 ohm
Resistor 330 ohm
×2
Push Botton Switch B3F
×1
Linear Regulator (7805)
Linear Regulator (7805)
×1
MCP1700
×1
28 Pin Dip Socket
×1
16 MHz Crystal
16 MHz Crystal
×1
Microchip ATMEGA328P
×1
SparkFun FTDI Basic Breakout - 5V
SparkFun FTDI Basic Breakout - 5V
×1

Software apps and online services

KiCad
KiCad
Arduino IDE
Arduino IDE

Hand tools and fabrication machines

Soldering iron (generic)
Soldering iron (generic)

Story

Read more

Schematics

DipUno Schematic

Code

Blink

C/C++
This is the Blink example code to test if the board works ok.
/*
  Blink
  Turns on an LED on for one second, then off for one second, repeatedly.

  Most Arduinos have an on-board LED you can control. On the UNO, MEGA and ZERO 
  it is attached to digital pin 13, on MKR1000 on pin 6. LED_BUILTIN is set to
  the correct LED pin independent of which board is used.
  If you want to know what pin the on-board LED is connected to on your Arduino model, check
  the Technical Specs of your board  at https://www.arduino.cc/en/Main/Products
  
  This example code is in the public domain.

  modified 8 May 2014
  by Scott Fitzgerald
  
  modified 2 Sep 2016
  by Arturo Guadalupi
  
  modified 8 Sep 2016
  by Colby Newman
*/


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

zhaoshentech

zhaoshentech

6 projects • 80 followers
An enthusiastic for startups!

Comments