DIY $5 USBTinyISP

74,970

200

66

Introduction: DIY $5 USBTinyISP

About: These instructables are mostly about electronics. I hope you find them helpful!

Dear Adafruit, Sparkfun, Radioshack, and hobbyist companies of the like,

I'm a high-schooler with zero dollars in the bank. I can't really afford to buy a $60 Arduino from RS when I could buy it for $15 on ebay, from Shenzhen or Hong Kong.
I understand that I am hurting your business by not buying your products, but by doing so I educate myself and others.
I just want to say thank you for teaching me how to make my own products when your products are too expensive.

Sincerely
tsjwang


Hey instructables!

First of all, I want to give absolute credit to Tequals0. You should check out his instructables account and follow him.

So, over the summer I needed to find a way to get OFF of the arduino board and onto smaller/cheaper microcontrollers for more permanent projects.
For a while I have been using the ArduinoISP sketch to upload files, but if I wanted to upload a hex file, I needed a real programmer (I needed a programmer that programs through the ISP and not through a serial port).

SO I looked at adafruit's USBTinyISP, which I must say, was VERY cheap comparing to Atmel's other programmers. USBTiny is also supported by Arduino IDE, so that's great too.

As cheap as it was, it was $22; I don't spend $22 on one thing.
so, let me get started on how to make your own usbtinyisp

Step 1: Design

Attached in the zip folder are some PCBs I made for your convenience. There is a DIP version and an SMT version. I did SMT this time just for fun. There is no difference.

You don't have to use the PCBs if you just want to make a perf board or something. There is a schematic from Tequals0 and that is all that matters

Attached in that zip files are other important stuff too, so I will refer to those.

Parts:
ATTiny45
Some PCB or perf board or breadboard
100nf capacitor (104)
2*68 ohm resistor
1.7k ohm resistor ( I only had 1.6 and 100)
2*3.6v zener diodes
6 pin headers
some form of USB connection.

I advise you, if you are planning to do other VUSB projects, buy a lot of 3.6v zener diodes. VUSB has a LOT of cool projects!

Step 2: Programming the Chip

The truth comes out...

In order to programmer the ATTiny45, you will need another programmer that can upload hex files...
So I DID have to buy one from ebay for $10..
If anyone knows how to upload HEX files using Arduino, please do tell!
<EDIT>
There is a way to upload hex files using Arduino
Read this comment by Jgniklu,

To do that upload the Isp sketch like it the tutorial and set up all the wires connecting the attiny and arduino the same way.Now instead of burning the boot-loader and uploading a sketch you can use avrdude. You will have to change the -c usbtiny to -c avrisp so the first command should look like this avrdude -c avrisp -p t45 -U flash:w:usbtiny.hex
</EDIT>

If you do not have a target board, connect wires from the programmer to the appropriate pins on the ATTiny.
Here is a guide to using AVRDUDE and programming, thank you adafruit.



So anyways, in your folder should be a hex file. In some folder should also be a README.txt

So, please read the readme. It contains the commands you must type into the command prompt IN ORDER.

So first, I would type:
avrdude -c usbtiny -p t45 -U flash:w:usbtiny.hex

Then I would type:
avrdude -c usbtiny -p t45 -V -U lfuse:w:0xe1:m -U hfuse:w:0x5d:m -U efuse:w:0xff:m

Remember, before you do this, you must start you command prompt in the folder which the usbtiny.hex file is.

Attached in the folder is another text file that shows what should happen in the command prompt.

Make sure to do this correctly, because you only have one try
After burning the fuses, reset will be disabled and you will not be able to turn back unless you have a high voltage programmer


If you are unsure about anything, PM me or comment.

Step 3: Making the PCB

So, this is pretty straightforward. Just look at the pictures.

If you did not program the chip yet, there is another option!
you can program it AFTER the PCB is finished (an option for you SMT people out there)

If you look at the schematic, the 6 pins, RESET, Vcc, GND, MISO, MOSI are all connected to the 6 pin ISP.

All you need to do is connect that ISP of your to-be-USBtiny to the other ISP on the original programmer. You can then upload the hex file and burn the fuses.

Step 4: Does It Work?

After finish the soldering, plug it into the computer.
Install the USBTinyISP driver from adafruit if you haven't already.

Then, just type in the commands:
avrdude -c usbtiny -p m8

If you get something that says:
avrdude: Error: Could not find USBtiny device (0x1781/0xc9f)
avrdude done. Thank you.

something is wrong... Check if you have your driver installed, your parts in the right place, or if you programmed your chip correctly.

If you get this:
avrdude: initialization failed, rc=-1
Double check connections and try again, or use -F to override
this check.
avrdude done. Thank you.

then good job! Now you have a pretty cheap USBtiny device. Go crazy.
Hardware Hacking

Participated in the
Hardware Hacking

Build My Lab Contest

Participated in the
Build My Lab Contest

7 People Made This Project!

Recommendations

  • Make It Bridge

    Make It Bridge
  • Game Design: Student Design Challenge

    Game Design: Student Design Challenge
  • For the Home Contest

    For the Home Contest

66 Comments

0
jemamena
jemamena

9 years ago on Introduction

Thanks for the tutorial, it's great!

Is it possible to make the usbtinyisp with an attiny85?

0
TSJWang
TSJWang

Reply 9 years ago on Introduction

Absolutely,

When typing in avrdude all you have to change is t45 to t85.

Thanks.

0
TSJWang
TSJWang

Reply 8 years ago on Introduction

Hmm probably not unless you change the source code which I did not write.
It probably could work, just some minor changes to the code.

0
TSJWang
TSJWang

Reply 9 years ago on Introduction

Brilliance!
Thanks for the tip. Always striving for the cheaper option!

0
TSJWang
TSJWang

Reply 9 years ago on Step 2

Hey Jgniklu,

Thanks for that link. Is there a way you can use Arduino to upload just a hex file, not a sketch?
Sometimes the things I want to upload are in AVR C instead of Arduino C, so I just upload the hex file. I will do a little search on what commands Arduino uses in avrdude to upload...

0
Jgniklu
Jgniklu

Reply 9 years ago on Step 2

To do that upload the Isp sketch like it the tutorial and set up all the wires connecting the attiny and arduino the same way.Now instead of burning the boot-loader and uploading a sketch you can use avrdude. You will have to change the -c usbtiny to -c avrisp so the first command should look like this avrdude -c avrisp -p t45 -U flash:w:usbtiny.hex

0
TSJWang
TSJWang

Reply 9 years ago on Introduction

Thanks Jgniklu! For saving me some time looking that up. I'll edit my instructables.

0
Bryan JimP1
Bryan JimP1

5 years ago

What PCB designing software do you use?

0
TSJWang
TSJWang

Reply 5 years ago

I use Copper Connection. It used to be free software but now it's owned by ExpressPCB. It's essentially the same software but Copper Connection's UI is a little better.

0
mloro
mloro

5 years ago

Quick one, looking at the images, mainly the one with the program you used to create the PCB, there is a 100 ohm resistor that is not mentioned nor in the required parts nor in your schematic, is that necessary? in case can you provide me an updated schematic with the100 ohm resistor just to be sure I've understand properly where it goes? (Just an hobbist so easy to do wrong things)

0
mloro
mloro

Reply 5 years ago

Looking better to the connections of the PCB diagram it seems basically you connect in series a 1.7k and 100 ohm resistors for a total of 1.8k and not 1.7k as in the schematic. Is that right?

0
TSJWang
TSJWang

Reply 5 years ago

Good question!

I think back then I only had 1.6k resistors, so I had to add a 100 ohm in series to get 1.7k.

I wrote 1.7k in the board because I assumed I had one at the time but I didn't.

0
PeterK138
PeterK138

6 years ago

Hi guys correct way to upload that using arduino:
HEX: avrdude -P com3 -b 19200 -c avrisp -p attiny85 -v -e -U flash:w:usbtiny.hex
FUSE:

avrdude -P com3 -b 19200 -c avrisp -p attiny85 -v -e -U lfuse:w:0xff:m -U hfuse:w:0xdf:m

0
Calebe94
Calebe94

Reply 6 years ago

Thank you so much! It works fine to me !

0
KotamrajuS
KotamrajuS

7 years ago

Could someone please help out...... Made it on a breadboard..... Flashed the attiny45 with the usbtinyisp hex file(btw had to add -B3 at the end to make it through) But after that...... It is beign recognised as unknown device..... Though the drivers for UsbTiny is installed under the libusb-win32 devices.....

0
TSJWang
TSJWang

Reply 7 years ago

It might he a hardware problem. Usually it's a burnt diode. I would check those and perhaps flash another attiny45. what was the B3 for?

0
KotamrajuS
KotamrajuS

Reply 7 years ago

Hello,

Thanks for responding! :) ... have changed the diodes with new ones.... no change.... I used -B3 to change the bitclock rate..... i am quite new to this..... Had troubles while flashing the attiny45.... so found it as a solution in one of the websites.... I donot have a new chip to flash and i have flashed this one's fuses.... so probably i can't flash it again.... will try with a new one soon..... Is changing the clock rate a reason for this!?