Lilypad Program Troubleshoot
/*
blink
turns on led on 1 second, off 1 second, repeatedly.
example code in public domain.
*/
void setup() {
// initialize digital pin output.
// pin 13 has led connected on arduino boards:
pinmode(5, output);
}
void loop() {
digitalwrite(5, high); // set led on
delay(1000); // wait second
digitalwrite(5, low); // set led off
delay(1000); // wait second
}
the program prints error : avrdude: stk500_getsync(): not in sync: resp=0x00
i have tried program on multiple occasions , have tried different computer ports, boards, , different pin numbers. however, led continues not blink.
thank help.
the program prints error : avrdude: stk500_getsync(): not in sync: resp=0x00
blink
turns on led on 1 second, off 1 second, repeatedly.
example code in public domain.
*/
void setup() {
// initialize digital pin output.
// pin 13 has led connected on arduino boards:
pinmode(5, output);
}
void loop() {
digitalwrite(5, high); // set led on
delay(1000); // wait second
digitalwrite(5, low); // set led off
delay(1000); // wait second
}
the program prints error : avrdude: stk500_getsync(): not in sync: resp=0x00
i have tried program on multiple occasions , have tried different computer ports, boards, , different pin numbers. however, led continues not blink.
thank help.
the program prints error : avrdude: stk500_getsync(): not in sync: resp=0x00
that error message means pc unable contact bootloader on lillypad. exact hardware using? sure have right board , serial port selected?
Arduino Forum > Using Arduino > Installation & Troubleshooting > Lilypad Program Troubleshoot
arduino
Comments
Post a Comment