916 B
916 B
Getting started
@description An activity for beginners to get started with the micro:bit
~avatar
Here are some challenges for you. Arrange the blocks in the editor to make real programs that work!
~
Use the Basic drawer in the editor to drag out and arrange three blocks to create this program:
basic.forever(() => {
basic.showLeds(`
. . . . .
. # . # .
. . . . .
# . . . #
. # # # .
`)
basic.showLeds(`
. . . . .
. . . . .
. . . . .
. . . . .
. . . . .
`)
});
When this program runs, you will see a smiley face, then a blank
screen, then a smiley again -- it never stops! (That's because of the
forever
block.)
Click Download to move your program to the @boardname@! Make sure to follow the instructions.
~button /getting-started/screen
NEXT: THE SCREEN