Good evening
sorry if I answer you only now, but I have been busy with the job.
I tried to make the correction you suggested me to do, but I didn’t get anything, Arduino still doesn’t answer. I also tried to insert the usual code through the Arduino IDE, and it worked regularly.
Through VScode I tried to put a simple blink on arduino, always changing the delays, and he always transferred it to me.
Then I tried to load this little code
#include <Arduino.h>
int pinBuzzer = 8;
void setup () {
pinMode (pinBuzzer, OUTPUT);
}
void loop () {
tone (pinBuzzer, 988,200); // Note B5
delay (100);
tone (pinBuzzer, 1319.850); // Note E6
delay (1500);
}
and report three problems to me
and after a long string of yellow letters of this type:
x16d4 = ATxmega16D4
x16e5 = ATxmega16E5
x192a1 = ATxmega192A1
x192a3 = ATxmega192A3
x192a3u = ATxmega192A3U
x192c3 = ATxmega192C3
x192d3 = ATxmega192D3
x256a1 = ATxmega256A1
x256a3 = ATxmega256A3
x256a3b = ATxmega256A3B
x256a3bu = ATxmega256A3BU
x256a3u = ATxmega256A3U
x256c3 = ATxmega256C3
x256d3 = ATxmega256D3
x32a4 = ATxmega32A4
x32a4u = ATxmega32A4U
x32c4 = ATxmega32C4
x32d4 = ATxmega32D4
x32e5 = ATxmega32E5
x384c3 = ATxmega384C3
x384d3 = ATxmega384D3
x64a1 = ATxmega64A1
x64a1u = ATxmega64A1U
x64a3 = ATxmega64A3
x64a3u = ATxmega64A3U
x64a4 = ATxmega64A4
x64a4u = ATxmega64A4U
x64b1 = ATxmega64B1
x64b3 = ATxmega64B3
x64c3 = ATxmega64C3
x64d3 = ATxmega64D3
x64d4 = ATxmega64D4
x8e5 = ATxmega8E5
ucr2 = deprecated, use ‘uc3a0512’
and after a long time he returned this message to me
Environment Status Duration
-------------- -------- ------------
one SUCCESS 00: 00: 32.333
lightblue-bean FAILED 00: 01: 53.223
attiny13 FAILED 00: 00: 06.328
digispark-pro FAILED 00: 00: 06.023
digispark-tiny FAILED 00: 00: 04.128
dwenguino FAILED 00: 02: 22.131
ATmega16 FAILED 00: 00: 06.209
ATmega48 FAILED 00: 00: 04.531
AT90CAN64 FAILED 00: 00: 06.851
ATmega324PB FAILED 00: 00: 04.832
ATmega328PB FAILED 00: 00: 04.968
nibo2 FAILED 00: 15: 07.453
panStampAVR FAILED 00: 00: 15.893
attiny828 FAILED 00: 00: 11.159
attiny441 FAILED 00: 00: 03.879
===================================== 14 failed, 1 succeeded in 00: 21: 09.942 == ===================================
can you help me?
Thank you very much