Introduction: ATtiny Programmer Using Arduino ISP
For relatively small (less number of pins than ATmega328) projects, ATtiny series, ATtiny45 or Attiny85 are good choice in terms of its physical size (8-DIP or 8-SOIC) and low power consumption.
There are many ways to program it. One of the popular device is USBtinyISP and DASA. Both of them work very well with WinAVR (AVRdude).
I'd like to share how I program ATtiny85 with JeonLab mini 1.3. The idea has been adapted from High-Low Tech Group and provideyourown.com. One missing note from High-Low Tech Group is that you need to add a 110-120 ohm resistor between VCC and Reset pins of JeonLab mini (or Arduino) to prevent Auto reset on serial connection as explained in here and here.
Step 1: Schematic Diagram
You will need a JeonLab mini or Arduino or any Arduino compatible board with FTDI USB interface. Here is an example with JeonLab mini v1.3.
Step 2: Assembly on a Prototype Board
I used a piece of prototype board to assemble a JeonLab mini v1.3, 6pin male header for the FTDI basic board (Sparkfun), 3 indicating LEDs, a 8pin DIP socket, and a ceramic resonator for ATtiny (if you are using internal oscillator, you don't need it). I also added another LED to the ATtiny PB0 (pin 5) in order for quick debugging, but if you don't need or want it, just ignore it. The function of those indicating LEDs in ArduinoISP sketch you will upload later are:
9 (red, right): Heartbeat - shows the programmer is running
8 (red, middle): Error - Lights up if something goes wrong
7 (green, left): Programming - In communication with the slave
You can also use a bread board as shown in the 3rd picture.
Step 3: Programming Environment (Arduino IDE)
Now go visit High-Low Tech Group and download ATtiny 45/85 support hardware files and extract them to hardware folder in Arduino folder. Once this is done, connect the board to USB port of your computer and run Arduino and load ArduinoISP sketch from example. Check your board setting (see below picture) and COM port number and upload ArduinoISP to the JeonLab mini or Arduino.
As you can see in the 2nd picture, there are new hardware (board) options, ATiny45 and ATtiny85.
Now your JeonLab mini or Arduino has been transformed into a ATtiny 45/85 programmer!
Step 4: Program Upload
Using this configuration, you can upload your Arduino (of course, there are some limitations like pin numbers and memory capacity) sketches to the ATtiny 45 or 85 from Arduino IDE.
Here is an example shown in the captured picture with the famous Blink sketch. Note that you have to change the pin number 13 to 0 (or 1, 2 if you connected an LED there).
Please note the board should be selected as ATtiny 45 (or 85) (w/ Arduino as ISP).
You will encounter two errors as below but you can ignore them.
avrdude: please define PAGEL and BS2 signals in the configuration file for part ATtiny85
avrdude: please define PAGEL and BS2 signals in the configuration file for part ATtiny85
Not only from Arduino IDE, but you can also program your ATtiny with WinAVR or avrdude from DOS command window using this set-up.

Participated in the
Arduino Challenge
18 Comments
7 years ago
khazamma AVR programmer, is a good free fast hex file flasher - for free.
http://khazama.com/project/programmer/
8 years ago on Introduction
For more clear about how to load a hex file in microcontroller you can browse this video.
https://www.youtube.com/watch?v=4rHWzO7tqQc
9 years ago on Introduction
para que serve?
Reply 8 years ago on Introduction
Serve para programmar ATtiny85/45 usando Arduino ou JeonLab mini.
9 years ago on Introduction
You can program ATtiny13/15/25/45/85 with these shield also. I found one here its very cheap and easy no jumpers and breadboard needed.
http://tiny.cc/bg86ox
11 years ago on Introduction
I have done this very setup but, for a different project, using USBtinyISP to load the 328 chip with Arduino as ISP via Ardino-22, then go thru the selection process for the ATtiny85 board and then the selection of my program to upload via Arduino 1.0, the error msg coms back not able to find link or Serial not declared in this scope. What do I need to do to get it to work?
Reply 11 years ago on Introduction
I assume that you have already checked the COM port and board setting. Actually I'm still using Arduino 0022 and haven't updated to v1.0 because I know there are a number of changes in new version which I'm not familiar with yet. If you are not familiar with the new version like me, I suggest to use 0022.
Reply 11 years ago on Introduction
I went back thru and re-installed Arduino-22 and got the following:
avrdude: stk500_getsync ( ) : not in sync: resp=0x00
avrdude: stk500_disable ( ) : protocol error, expect=0x14, resp=0x51
Any suggestions?
Reply 11 years ago on Introduction
Are you trying to upload a sketch to the ATmega328p, not ATtiny85/45? If so, you need to remove the resistor between the reset pin and Vcc which prevents auto-reset and you can not upload a sketch.
Reply 11 years ago on Introduction
Bekow is what I am now getting. How do I enter the -F to ignore the lock_bit ?
avrdude: Expected signature for ATMEGA 328P is 1E 95 0F
Double check chip, or use -F to override this check.
Checked my chip, it is an ATMEGA 328P-PU, the lock_bit is 1E 95 51.
How do I update the IDE to recognize the difference?
Reply 11 years ago on Introduction
That's weird. Could you describe more specifically which step you had successfully proceeded and saw these errors? I wonder if the ATmega328p chip you are using has the Arduino bootloader. If it is a virgin chip, you need to burn the bootloader first.
Reply 11 years ago on Introduction
I also have the feeling it is not the different ATmegachip, as long as it is in an arduino board and has a bootloader after all it is the Attiny one tries to program.
Try have a look here:
http://www.sparkfun.com/products/9231
and check out dogno7's reply
omitting the b1 parameter (if at all possible in the IDE) would be the solution
Reply 11 years ago on Introduction
I finally got the solution. It was part of the MIT Hi/Lo paper. As I understand the things going on being a newbie I was trying to load thru USBtinyISP to the Arduino and use it as the ISP. As a result it is a double interpretation that is unnessary. The ATtiny does not have enough memory for bootloading and thus the problems. The setup was to connect the 6 pin of the USBtinyISP to the ATtiny85 on the correct pins. Then from the Tools menu select Boards then, select ATtiny85 w/USBtinyISP. Next go to Files, select Sketches then select your sketch. Next from the Tool bar select upload and BAM!! The little guy starts working. Now the final problem I notice with my sketch is; since this is a basic Blink program with 2 LED outputs, and a Pushbutton as an input to select different Blink patterns when, I power down the circuit and when I power up my last Blink pattern is now in Mode 0 or off. I am then forced to press the pushbutton switch to advance to the Blink pattern I had before. What kind of command do I need to insert into my sketch to cause the program to resume the last pattern displayed? Or do I need to place a memory backup capacitor on the Pin8 VCC to maintain the program until power up is selected?
Reply 11 years ago on Introduction
That's exactly what I explained in the Step 3 and 4. Good to hear you figured it out, finally! Regarding the memorizing the last state before power down, you can use EEPROM (non-volitile memory), but I haven't use it on any ATtiny chips. If the power supply is not a problem, as you said, powering up the chip would be not a bad idea.
Reply 11 years ago on Introduction
I am glad you got it working
Reply 11 years ago on Introduction
you could try to write tje last state to EEPROM and start your program by checking if there is a state/value written to EEprom
Reply 11 years ago on Introduction
Its been a very long day but, I think I have figured out the problem. The chips I have are Atmega328p-pu and the Arduino system uses Atmega 328p, they have different signatures.
Since Arduino boasts of how simple it is to use their product by only cutting and pasting in their Sketches to get a program to work with little effort, they need to be more aggressive with an update addition of the binaries to broaden the field of chips to use to get this or any other program to work.
This would explain why the volumes of posts on various forums by "Newbie Users", like myself complaining about not being able to get the Arduino projects to work. I am sure experienced users like yourself would like a break from the barage of questions also. At this point until binary updates are forth coming I need to spend more money and buy specific Atmega 328p chips.
Thanks for your help it is very much appreciated.
Reply 11 years ago on Introduction
ATmega328p-pu is the one I use. If it has proper Arduino bootloader, it shoud work fine. If you bought the chip WITH a bootloader loaded, there must be something ELSE wrong. Let me help before you buy another one. If I can't, there will be lots of people who can help you with figuring out real problem. Are you using a minimal Arduino made by yourself or any other arduino derivative board?