Вы находитесь на странице: 1из 1

Uploading code onto your LilyPad Board

Click on the upload button.

It looks kind of like a play button. You should see red and green LEDs on your FTDI flashing on and off. This means the computer and the LilyPad Dev Board are talking to each other. After your code is done uploading you should see the little green LED on the LilyPad Dev Board blinking. Lets look at the Blink code you uploaded onto your microcontroller: pinMode tells Pin 13 to act like an output. Forever makes the code repeat. digitalWrite turns the LED on (or HIGH). Pause for a second. digitalWrite turns the LED off (or LOW). Pause for another second.

Try changing the numbers in delay and uploading your code again

Вам также может понравиться