pxt-calliope/docs/lessons/strobe-light.md

33 lines
738 B
Markdown
Raw Normal View History

2016-03-25 16:47:20 -07:00
# strobe light lesson
2016-04-01 16:22:47 -07:00
Learn how to create a blinking LED script.
2016-03-25 16:47:20 -07:00
2016-05-26 15:24:10 -07:00
2016-03-25 16:47:20 -07:00
## Topic
For Loop
## Quick links
2016-04-13 08:27:45 -07:00
* [activity](/lessons/strobe-light/activity)
* [challenges](/lessons/strobe-light/challenges)
* [quiz](/lessons/strobe-light/quiz)
* [quiz answers](/lessons/strobe-light/quiz-answers)
2016-03-25 16:47:20 -07:00
2016-03-29 16:17:34 -07:00
## Documentation
2016-03-25 16:47:20 -07:00
2016-04-04 22:33:13 -07:00
```cards
2016-03-29 16:17:34 -07:00
led.plot(0, 0)
led.unplot(0, 0)
2016-04-04 22:33:13 -07:00
for (let i = 0; i < 5; i++) {}
2016-03-29 16:17:34 -07:00
basic.pause(100)
```
2016-03-25 16:47:20 -07:00
## Objectives
* learn how to repeat code a fixed number of times
* learn how to turn on a LED light on the LED screen. Specify with LED using x, y coordinates
* learn how to turn off a LED light on the LED screen. Specify which LED which x, y coordinates
* learn how to pause program execution for the specified number of milliseconds