I'm facing this problem please guide`

</>Sketch uses 924 bytes (3%) of program storage space. Maximum is 30720 bytes.
Global variables use 9 bytes (0%) of dynamic memory, leaving 2039 bytes for local variables. Maximum is 2048 bytes.
"C:\Users\DELL\AppData\Local\Arduino15\packages\arduino\tools\avrdude\6.3.0-arduino17/bin/avrdude" "-CC:\Users\DELL\AppData\Local\Arduino15\packages\arduino\tools\avrdude\6.3.0-arduino17/etc/avrdude.conf" -v -V -patmega328p -carduino "-PCOM7" -b115200 -D "-Uflash:w:C:\Users\DELL\AppData\Local\Temp\arduino-sketch-87E68922623451ABD4A6A31E7A863213/Blink.ino.hex:i"

avrdude: Version 6.3-20190619
Copyright (c) 2000-2005 Brian Dean, http://www.bdmicro.com/
Copyright (c) 2007-2014 Joerg Wunsch

     System wide configuration file is "C:\Users\DELL\AppData\Local\Arduino15\packages\arduino\tools\avrdude\6.3.0-arduino17/etc/avrdude.conf"

     Using Port                    : COM7
     Using Programmer              : arduino
     Overriding Baud Rate          : 115200

avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0x3a
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 2 of 10: not in sync: resp=0x3a
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 3 of 10: not in sync: resp=0x3a
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 4 of 10: not in sync: resp=0x3a
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 5 of 10: not in sync: resp=0x3a
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 6 of 10: not in sync: resp=0x3a
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 7 of 10: not in sync: resp=0x3a
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 8 of 10: not in sync: resp=0x3a
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 9 of 10: not in sync: resp=0x3a
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 10 of 10: not in sync: resp=0x3a
</>

avrdude done. Thank you.

Failed uploading: uploading error: exit status 1

I'm using arduino NANO processor: ATMEGA328 and programmer Arduino as ISP

please guide

➜ Hello, do yourself a favour and please read How to get the best out of this forum and modify your post accordingly (including code tags and necessary documentation for your ask).

the programmer might be not the correct one unless you use an Arduino as ISP
for the Nano you might have to choose the old boot loader option

1 Like

The programmer setting is only relevant if you are using Sketch > Upload Using Programmer in the IDE and an ISP programmer.

As J-M-L mentioned, try Tools > Processor: "ATmega328P (Old Bootloader)", if you have a Nano clone it is very common for those to come with the old bootloader installed.

@david_2018 Thank you that worked for me. I had another question I tried uploading heart rate sensor code the uploading completed but I couldn't see any output why is that?

Assuming you are using the serial monitor, check that the baud rate matches what is used in the sketch in the Serial.begin() function call. Baud rate setting is at the bottom of the serial monitor window.
Other than that, the sensor may be wired incorrectly, the code could have an error (although if you are using example code that is less likely), the sensor itself could be bad, etc.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.