6398d60b3b
* Add info to some examples * Push a few more descriptions * Couple more * Touch up card descriptions * Fix 'drop' typo * Live typo
22 lines
324 B
Markdown
22 lines
324 B
Markdown
# Blinky
|
|
|
|
Flash a pattern on the LEDs.
|
|
|
|
```blocks
|
|
basic.forever(() => {
|
|
basic.showLeds(`
|
|
. # . # .
|
|
# # # # #
|
|
# # # # #
|
|
. # # # .
|
|
. . # . .`
|
|
);
|
|
basic.showLeds(`
|
|
. . . . .
|
|
. . . . .
|
|
. . . . .
|
|
. . . . .
|
|
. . . . .`
|
|
);
|
|
})
|
|
``` |