I've got a big problem with my new Arduino. I made a big mistake, and now I can't anymore connect to my arduino. Is there any possibility to recover the Arduino, or to stop the execution of code definitly?
Here my code:
void setup () {
Serial.begin(9600);
}
void loop () {
Serial.write("Hello World!");
}
My problem is, that this code is executed so immediatly after booting the Arduino, and I can't upload something different to the Arduino...
Please help me.