Standalone Arduino / ATMega Chip on Breadboard
by domiflichi in Circuits > Arduino
304319 Views, 474 Favorites, 0 Comments
Standalone Arduino / ATMega Chip on Breadboard
The problem was that I'm such an electronics newbie that I didn't know where to start. After reading through many web pages and forums, I was able to put together this Instructable. I wanted to have the information I learned all in one place, and easy to follow.
Comments and suggestions are welcome and appreciated as I'm still trying to learn all this stuff.
Edit:
Fellow Instructable member, Janw mentioned to me that it's always a good idea to add a capacitor or 2 near your power. He mentioned using a couple of 100nF capacitors should work. I'm very grateful he pointed this out to me, because my first production circuit that I'm building upon this circuit, was having a little bit of strange behavior. So I hooked up one 10uF capacitor near my power, and it started behaving correctly! I don't know why it didn't affect my 'blinking LED' test, but I do know that I'm grateful for Janw for pointing this out to me. Thanks Janw.
Edit2:
Building upon the previous edit, I wanted to mention that Instructable member, kz1o brought out some more information regarding the capacitors. Please see his comment below, dated February 14th, 2010 @ 10:52 am.
Update - This Instructable is on Hack a Day!
Parts Needed
#1 - (Qty: 1) - ATMega328 chip with Arduino bootloader pre-installed ($5.50)
#2 - (Qty: 1) - 5VDC Switching power supply ($5.95)
(Note: If you don't use a switching power supply, you must add in a voltage regulator and a couple of capacitors...see below)
#3 - (Qty: 2) - 22 pF ceramic disc capacitors ($.24 / ea)
#4 - (Qty: 1) - 16MHz Crystal ($1.50)
#5 - (Qty: 1) - Power jack ($.38) (Optional)
#6 - (Qty: 1) - Breadboard (hopefully you have one laying around, but if not, here's one. ($8.73)
#7 - Small pieces of 22 awg solid wire. If you don't have any, you can probably pick some up at your favorite electronics store.
Total cost for above before tax/shipping: about $14 (not including breadboard).
Alternatives / options:
Option / Alternative #1:
If you want to use an existing power supply you have around the house, make sure it is between 5V - 16V. If you are not sure if it is a regulated switching power supply, then you must use the following components too:
#1 option - (Qty: 1) - 5V Voltage Regulator (or another similar 5V voltage regulator) ($.57)
and
#1 option - (Qty: 2) - 10 uF Aluminum Capacitor ($.15 / ea)
(See below reference links for how to hook them up)
Option / Alternative #2:
If you don't want to use standard items #3 and #4, you can replace those with:
#2 option - (Qty: 1) - 16 MHz Ceramic Resonator (w/cap) ($.54)
This part looks like a ceramic capacitor, and you hook the 2 outside pins up to where you would hook the crystal up (covered later in the Instructable), and the middle pin goes to ground. At least this is what I've read - I haven't tried it yet. But as you may note, it is a little cheaper to go this route. :)
Ok, let's start hooking stuff up!
Hooking Up Power
Chip (microcontroller) Placement
You most likely won't have to do this if you're pulling your chip from your Arduino - they're already bent from being in the socket.
Please note the orientation of the chip - in the photos and for this Instructable, please place the chip so that the little half-round 'notch' is on the left.
Bringing Power to the Chip
If you can't tell which pins are being connected on the chip, look at the 5th image in this step which is a pin mapping that I pulled from Arduino's website to reference. Going by that, you can see that our ground/negative (black) wire is going to pin 22, and the 2 positives (the red wires) are going to pins 20 and 21.
Next hook up 1 more positive (red) wire and 1 more negative (black) wire as shown in the 3rd/4th photos (they're the same thing...just one is zoomed in more).
Again, if you can't tell, look at the Arduino mapping, and you can see that we're connecting our ground/negative (black) wire to pin 8, and the positive (red) wire to pin 7.
Hooking Up the Crystal to the Chip
Now for the crystal. Place one leg of the crystal at pin 9, and the other leg at pin 10...but make sure you place it between the capacitors and the chip/microcontroller. Refer to the photos.
That's it! You're actually done. The next 2 steps are optional. Now you can replicate what you had connected to your actual Arduino board to this standalone circuit. You'll want to reference the Arduino pin mapping from Step 4 to know what to hook up and where.
You can continue on to the next couple of steps for a little extra, and a test, or proof-of-concept for lack of better term.
Here's a quick video of the completed breadboard:
(Optional) Power Indicating LED
Just hook up your resistor (the one I used on mine, in the picture is a 510 OHM resistor) as shown in the photos. Remember with LEDs that they do have polarity - the short leg is the negative one, and the long one is the positive one. So make sure the short one is the one connected to the ground (black) rail.
One of the pictures shows the circuit plugged in, and the LED on.
There you go. Again, I'm not an expert, but it seems very logical that you would want to do this, and I'm going to do this step on the final version of my first Arduino project.
Read on to the next step if you want to see a real simple way of seeing if you've got everything on your breadboard right.
(Optional) Quick and Easy Test
For this you'll need a resistor, and LED and some code.
Wire up a resistor and an LED as shown in the photos. For this one, I used a 330 OHM resistor, and a red LED. Take note of how you plug in the LED - they have polarity - the short leg goes into the negative/ground rail, and the longer, positive lead goes to the ATMega chip...pin 19. As before, if you're not sure what pin this is, refer to the Arduino mapping image in Step 4.
Now, you need to download the Arduino Sketch I've attached, open it in the Arduino software, and upload it to your chip. This will make Arduino pin 13 (but it's ATMega pin 19 as I mentioned in the previous paragraph) blink every second. It's from this great Getting Started with Arduino book I have.
Once you've hooked up your LED and resistor, programmed your chip, put it back on your breadboard, then you can connect up your power. You should get a blinking LED, which means you've hooked up everything correctly!
Below is a brief video of the circuit we just built with this blinking LED:
Credits and Links
I hope you liked my Instructable and I hope it helps you. I know I wish I had something like this when I was first trying to figure this all out. I must say though I can't take all the credit - I must thank the Arduino product and website for making a great product. The Arduino website is a great source of information and is actually where I got a lot of information about the minimum required components to get a chip to work away from an Arduino board.
The other great source was at: ITP Physical Computing ... particularly the Arduino-specific web page.
And I can't forget the Getting Started with Arduino book that I mentioned in Step 7 - it was a great resource for getting me started with my Arduino.
And last but not least, if you've got this far, thank you for reading!