The stange thing is
when I upload this basic code, I don't have any error message :
void setup() {
}
void loop() {
}
Since that moment,
I tried to upload a blink test like this, it's working perfect
but I still have an error message :
avrdude: verification error, first mismatch at byte 0x05e7
0x77 != 0x57
avrdude: verification error; content mismatch
int led = 13;
void setup() {
pinMode(led, OUTPUT);
}
// the loop routine runs over and over again forever:
void loop() {
digitalWrite(led, HIGH);
delay(1000);
digitalWrite(led, LOW);
delay(100);
digitalWrite(led, HIGH);
delay(100);
digitalWrite(led, LOW);
delay(100);
}