I would like to know how to build the the development board used the AVRISP mkII and the ATtiny84. Is there a schematic or an eagle file for that?
I would like to know how to build the the development board used the AVRISP mkII and the ATtiny84. Is there a schematic or an eagle file for that?
Do you mean the PCB I had on the show with sockets for ATMEGA and Tiny?
http://arduino.cc/en/uploads/Main/Arduino_Uno_Rev3-schematic.pdf
The chip you're programming is on the right.
Basically you need the SPI bus, Reset, Power, Ground and Crystal.
You'll need still an external AVRISP Mark II programmer to connect to the header, or use Arduino as ISP (see Ardunio site for details)
Yes, it exactly that prefboard which you used to program the ATtiny. But there is no socket on the Arduino Uno for an ATtiny ?!?
Yes, it exactly that prefboard which you used to program the ATtiny. But there is no socket on the Arduino Uno for an ATtiny ?!?
Here's how it works:
A regular Arduino must first be programmed with a Bootloader. This is done via the SPI bus and the AVR Programmer.
Then, it can be programmed externally via its RX/TX port (serially)
ATTINY can be programmed via SPI and AVR programmer. You could breadboard it, and use jumpers to connect it to an empty socket Arduino. Google "Program ATTINY with Arduino"
The catch is there's no RX/TX, so you'd have to use AVR Studio, WinAVR, or compile with Arduino and manually burn the hex file.
-Ben