Hello!
My operating system is Windows7, 64-bit version and I have got an Arduino Uno.
I was able to upload my first program, which was this:
int ledPin=13;
void setup()
{
pinMode(ledPin,OUTPUT);
}
void loop()
{
digitalWrite(ledPin,HIGH);
delay(1000);
digitalWrite(ledPin, LOW);
delay(1000);
}
Then, when I tried to upload another program, even though it's a blank one or the same as the one that I have already updated, I keep getting this error:
Arduino: 1.8.9 (Windows 7), Board: "Arduino/Genuino Uno"
Sketch uses 942 bytes (2%) of program storage space. Maximum is 32256 bytes.
Global variables use 9 bytes (0%) of dynamic memory, leaving 2039 bytes for local variables. Maximum is 2048 bytes.
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0x24
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 2 of 10: not in sync: resp=0x24
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 3 of 10: not in sync: resp=0x24
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 4 of 10: not in sync: resp=0x24
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 5 of 10: not in sync: resp=0x24
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 6 of 10: not in sync: resp=0x24
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 7 of 10: not in sync: resp=0x24
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 8 of 10: not in sync: resp=0x24
avrdude: stk500_recv(): programmer is not responding
Problem uploading to board. See http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions.
avrdude: stk500_getsync() attempt 9 of 10: not in sync: resp=0x24
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 10 of 10: not in sync: resp=0x24
This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.
Right now, all that my board is doing is to blink the led 13 and the led that indicates the power is also on.
I checked if the board and the USB port are connected were they should be and they are. I updated the driver for Windows 7 as it says in the troubleshooting section, and I have tried some fiexes as well(like the one that implies starting Arduino from the IDE, not from the .ino file), but none worked in the end...
I hope that someone can help me with this problem!
Thank you for your attention, and I wish you a great day!