I have a problem with my Arduinio Board's.
Im trying to program LED's on my own using Arduinio Nano board and even when i pluged my board to my pc and selected the COM 9 (usb where my Arduinio is pluged in) and i try to run an Blink Example the Error pop's up "Exit Status 1"
What should i do because im new in the Arduinio world i can't figure it out.
I also tryed doing it on my older board, Arduinio UNO and from time to time it work's, but still it worked only once and then the 2 out of 4 build in LED's stoped working and when i try to run an Blink Example on it, it will upload till the end of the world.
Please help me by sending me solution to my problem, also talk to me like im dumb because i wont understand any of this stuff in near future.
The thing is the Nano board is getting read by my pc and when i plug it in every thing seem's to be working but when i run the Blink example in file's it just getting uploaded and then this error pop's up, i was looking through this error here and saw so many people having the same problem as me and the code's other people sends just dont work for me, and i dont know why, first i though i picked the wrong processor so i changed it to old bootloader but it still wouldnt work, I even reinstalled Arduinio IDE but again it didnt worked and i think its because the old program code for this error debug but i dont really know so im looking for help
"My main language is not English so i wanted to say that some word's could be misspelled and im sorry about it."
Im using an Arduino Nano board, i did my research tryed every code that could help me but nothing work's, the processor im using is ATmega328P the hardware is from the Nano Family and the code im trying to run is an example code from Adruino called Blink, but every time im trying to do it the error Exit Status 1 is poping up, i also wanted to say that i bought this board from Aliexpress
The code im trying to use: void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(LED_BUILTIN, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
this is the error message that pop's up after trying to run the code
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0x2c
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 2 of 10: not in sync: resp=0x2c
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 3 of 10: not in sync: resp=0x2c
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 4 of 10: not in sync: resp=0x2c
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 5 of 10: not in sync: resp=0x2c
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 6 of 10: not in sync: resp=0x2c
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 7 of 10: not in sync: resp=0x2c
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 8 of 10: not in sync: resp=0x2c
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 9 of 10: not in sync: resp=0x2c
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 10 of 10: not in sync: resp=0x2c
Failed uploading: uploading error: exit status 1
Have you tried the 328P (Old bootloader) under tools/processor? If that also does not solve the problem, try the 168 option. If that also does not solve the issue, please provide a link to the board that you bought.