Program AVR Tiny 85 via Arduino Uno

Hi!

I've tried to program a Tiny 85 via my Arduino Uno (following the rationale of http://hlt.media.mit.edu/?p=1229). However, when trying to upload the simple "blink" sketch I get error messages saying:

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

Does anyone knows what wrong?

Best regard s// M

Those are compiler errors, not uploading errors.

You have to fix those problems before you get to the uploading and all of its tricky issues.

Your main problem seems to be that the IDE/compiler cannot find the Arduino.h which you have
presumably included in your sketch. You need to find out why that is a problem. The other
errors will probably go away once you solve this problem.

That error indicates that your tiny core is not installed in the right place.

This tutorial on the website is for the IDE 0022, here is a newer tutorial for 1.0:http://hlt.media.mit.edu/?p=1695

I would recommend this core

https://code.google.com/p/arduino-tiny/

A little guide:
http://www.ernstc.dk/arduino/attiny85.html