pxt-calliope/docs/getting-started.md

43 lines
918 B
Markdown
Raw Normal View History

2016-05-12 13:56:03 -07:00
# Getting started
2016-05-12 13:41:15 -07:00
2016-11-01 17:44:37 -07:00
### @description An activity for beginners to get started with the @boardname@
2016-08-17 09:44:15 -07:00
## ~avatar
2016-06-14 21:37:55 -04:00
Here are some challenges for you. Arrange the blocks in the editor
to make real programs that work!
2016-05-12 13:41:15 -07:00
## ~
2016-07-21 13:46:22 -07:00
Use the **Basic** drawer in the editor
to drag out and arrange three blocks to create this program:
2016-06-02 11:38:14 -07:00
2016-06-02 12:32:13 -07:00
```blocks
2016-06-02 11:38:14 -07:00
basic.forever(() => {
basic.showLeds(`
. . . . .
. # . # .
. . . . .
# . . . #
. # # # .
`)
basic.showLeds(`
. . . . .
. . . . .
. . . . .
. . . . .
. . . . .
`)
});
```
2016-06-23 23:52:24 -07:00
When this program runs, you will see a smiley face, then a blank
2016-06-02 15:25:19 -07:00
screen, then a smiley again -- it never stops! (That's because of the
``forever`` block.)
Click **Download** to move your program to the @boardname@!
2016-06-23 23:52:24 -07:00
Make sure to follow the instructions.
2016-06-16 14:46:48 -04:00
2016-06-24 13:27:34 -07:00
### ~button /getting-started/screen
NEXT: THE SCREEN
### ~