manofgresley:
Many thanks for your advice and recommendations, now i know what to get, and knowing it will work, can you point me to a Fritz or other type of schematic circuit to include the chip??
So are you going with the chip on a custom board? Not with something like a Nano or Pro Micro?
If so, I can't do more than offer some advice on how to go about it, as it's going to be more effort to do it than I want to do for something that isn't my project.
Arduino pins are not the same numbers as the pins on the chip itself. If you look at the Uno schematic and pinout, you'll see how the pins map between the chip and the headers on the board. What you need to do is to find pins that will work for both the Uno and the chip you want to use. The ones that will work for noth are those that are connected to the same registers and register bit numbers. For instance, D3 is available on both the ATTiny86 and is brought out on the Arduino Uno on pin 3, so when you compile, that pin can still be used in the same manner. However, the tough part comes when you have to figure out how the pin on the ATTiny is apecified, because it is multi-purpose, and there may be another register you have to set to tell the chip what function that pin should have. On the other hand, it may just compile without change.
One of the nice things about the Arduino system is that it gets rid of all the engineering required to design the circuit, lay out the board, and learn all about the finer points of whatever chip you are programming, opening it all up to folks who would otherwise find it too daunting. For the ATTiny, you will also have to supply the circuit for programming it, the reset circuit, the bypass caps, and so on.
Again, I HIGHLY recommend the easy route, a Nano, Micro, or Pro Micro, which will play well with the Arduino IDE, and which will allow you to not only hook the circuit up easily, but will also allow you to use the same sketch with little or no change. in addition, size of a Pro Micro is not a lot larger than just the ATTiny84 chip itself, and it seems like a win-win to me.