Arduino IDE 2.0.0 not uploading to ATTINY via Arduino as ISP [solved]

Hej!

I'm trying with the new IDE 2.0.0 tu upload a simple sketch to an Attiny85, but I get the error message :
Sketch uses 426 bytes (5%) of program storage space. Maximum is 8192 bytes.
Global variables use 9 bytes (1%) of dynamic memory, leaving 503 bytes for local variables. Maximum is 512 bytes.
A programmer is required to upload.

the sketch is:


void setup() {

// put your setup code here, to run once:

int a=10;

}

void loop() {

// put your main code here, to run repeatedly:

delay(1000);

}

when I use the same settings @ the older IDE 1.8.20 hourly build 2022-04-25 09:33, the programming works.

==> I added the additional board to the URL Manager:
https://raw.githubusercontent.com/damellis/attiny/ide-1.6.x-boards-manager/package_damellis_attiny_index.json

Burning the bootload with IDE 2.0 worked
Is there a setting I'm missing?
attiny85

Your topic was MOVED to its current forum category which is more appropriate than the original

In IDE 1 we can use the Shift Upload to use the programmer to upload.

In IDE 2 this will not work. You need to select from the menu Sketch->Upload Using Programmer, or use Ctrl + Shift + U.

1 Like

Does the code compile and upload using IDE version 1 or is the problem only with 2.0 ?

the problem is only uploading on IDE2.
the code compiles on both versions, but only IDE1 is uploading

How are you initiating the upload when using IDE 2.0 ?

this works, thanks for your help

it works with Willem43 proposal/hint

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.