Program an ATmega168/328 With Codebender
by Berdux in Circuits > Arduino
16370 Views, 171 Favorites, 0 Comments
Program an ATmega168/328 With Codebender
If you want to use an inexpensive ATmega168 or ATmega328p for your project, but you want the simplicity of the arduino code and codebender, this tutorial will guide you through!
A brand new ATmega microcontroller does not come preconfigured to use with Arduino code. So to use one of these you normally need a high cost ATMEL ISP programmer to burn the Arduino bootloader into your ATmega. Thankfully there is an alternative way, using an existing Arduino board as an ISP.
What You Will Need
-A breadboard
-An Arduino board (i.e. Arduino UNO)
-The ATmega microcontroller you want to program (ATmega 168/328)
-An FTDI basic board or FTDI cable
-A 16MHz crystal
-A 10k resistor
-Two 18 to 22 pF (ceramic) capacitors
-An 100 nF (ceramic) capacitor
The Arduino board will be needed only once, to burn the bootloader to the ATmega and the FTDI will be needed each time you want to reprogram your ATmega.
Connecting the ATmega to the Arduino
On the breadboard we have the standard standalone ATmega setup. Note that we use the 2 capacitors of 18-22pF. We also need to connect 4 cables to the Arduino pins 10-13 to use it as a programmer.
Program Your Arduino
Thanks to codebender this is a piece of cake! Under the code below, select your Arduino device, the correct port, and click “Run on Arduino”.
(If you do not have the codebender plugin in your browser, under the code below, you will see a download/install link)
Burn the Bootloader to the ATmega
For this step we need to go to the codebender website from the following link: https://codebender.cc/static/burn_bootloader
Select “Arduino Diecimila or Duemilanove w/ ATmega168” if you have an ATmega168 or “Arduino Duemilanove w/ ATmega328” if you have an ATmega328, then select “Arduino as ISP” and the serial port of your Arduino. Finally click “Burn Bootloader”
Programming the ATmega
Now you have an easily programmable ATmega microcontroller for your embedded projects.
To program this ATmega you need the FTDI basic board or FTDI cable, and the capacitor of 100nF for the reset pin. In the above pictures you see an FTDI cable connected to the ATmega and a Fritzing sketch with an FTDI basic board.
I have included an LED (with a 220 Ohm resistor) on pin 19 of the ATmega (corresponds to the Arduino pin 13).
Test it now with the "blink" example!
at this link you will find the mapping of the arduino pins for the ATmega 168/328 microcontrollers