hi,
I am working with a arduino uno I recently got and an error came up.
avrdude stk500_recv(): programmer is not responding
I tried researching this and finding the answer but no idea. PLEASE help. The code I used was this:
/*
Blink
Turns on an LED on for one second, then off for one second, repeatedly.
This example code is in the public domain.
*/
void setup() {
// initialize the digital pin as an output.
// Pin 13 has an LED connected on most Arduino boards:
pinMode(13, OUTPUT);
}
void loop() {
digitalWrite(13, HIGH); // set the LED on
delay(3000); // wait for a second
digitalWrite(13, LOW); // set the LED off
delay(3000); // wait for a second
}
If you have any clue on how to fix this error or what may be the problem, please let me know!