hi im trying to use the arduino to program the attiny85,i have everything pluged rite
and have the board set to use arduino as isp,but when i try to run upload the blink sketch
it dosnt work i keep getting these errors/i didnt change nothing on the sketch but the led pin #
as in strucked on this website > http://hlt.media.mit.edu/?p=1229
Blink.ino:10:21: error: Arduino.h: No such file or directory
Blink.ino: In function 'void setup()':
Blink:15: error: 'OUTPUT' was not declared in this scope
Blink:15: error: 'pinMode' was not declared in this scope
Blink.ino: In function 'void loop()':
Blink:20: error: 'HIGH' was not declared in this scope
Blink:20: error: 'digitalWrite' was not declared in this scope
Blink:21: error: 'delay' was not declared in this scope
Blink:22: error: 'LOW' was not declared in this scope
Point #2 strongly hinted that you tell us what version of the IDE you are using. If it is 1.0+, then the Arduino.h file DOES exist. Your board type may not properly be defined. After all, the ATTiny85 is NOT an Arduino, so you DO have some work to do.
The tutorial you followed is obsolete, as it is for an older version of the Arduino IDE (it actually says so on the page). You need to follow the steps in: http://hlt.media.mit.edu/?p=1695
I just got an ATTiny85 working using those libraries and version 1.0.5 of the IDE. Just follow the steps in the tutorial and double-check your wiring...You can see a video of my first tests of the ATTiny85 in my signature.