I have an arduino uno R3. I am able to upload the programs with no connectivity issues. But there is a problem while executing the program and I don't know what that is. The 13th pin led is not blinking as the default bootloader program comes with preloaded blink program. I am not able to reset the board too. What might be causing the problem?
I even tried to reload the bootloader program. But the same think happens yet again.
just try this below code.Send me Serial output window if uploaded succesfully. Can you share me upload messgage when you upload below code
int led = 13;
// the setup routine runs once when you press reset:
void setup() {
// initialize the digital pin as an output.
pinMode(led, OUTPUT);
Serial.begin(9600);
}
void loop() {
Serial.println("LED ON:");
digitalWrite(led, HIGH);
delay(2000);
Serial.println("LED OFF:");
digitalWrite(led, LOW);
delay(2000);
}
I uploaded the bootloader keeping in mind all the three points you have given. It gets burned without showing any error message. But still the results are same, it's not working. Planning to go for a replacement of the IC. And Thanks for your immediate response Amen...