avrdude error: 0x00 not in sync
hey guys,
i did bread-boarded arduino per instructions on page:
http://arduino.cc/en/tutorial/arduinotobreadboard
and worked in uploading first sketch was:
and wired led pin1 gnd,
first off, sketch doesnt work (i think because need using resistor ground)
and every time try upload new sketch following error:
i've tried usual troubleshooting tips, reboot comp, unplug etc. , took led out.
does know how fix issue?
after every time tried upload sketch got a
i did bread-boarded arduino per instructions on page:
http://arduino.cc/en/tutorial/arduinotobreadboard
and worked in uploading first sketch was:
code: [select]
int ledpin = 1; // led connected digital pin 13
void setup()
{
pinmode(ledpin, output); // sets digital pin output
}
void loop()
{
digitalwrite(ledpin, high); // sets led on
delay(1000); // waits second
digitalwrite(ledpin, low); // sets led off
delay(1000); // waits second
}
and wired led pin1 gnd,
first off, sketch doesnt work (i think because need using resistor ground)
and every time try upload new sketch following error:
code: [select]
avrdude: stk500_getsync(): not in sync: resp=0x00
i've tried usual troubleshooting tips, reboot comp, unplug etc. , took led out.
does know how fix issue?
after every time tried upload sketch got a
update: turns out program works runs pin 1 high , low (obviously), , have learned pin 1 tx pin! i'm idiot, know how can flash program other way? i'm guessing why upload isn't working.
Arduino Forum > Using Arduino > Installation & Troubleshooting > avrdude error: 0x00 not in sync
arduino
Comments
Post a Comment