26 lines
334 B
Markdown
26 lines
334 B
Markdown
## Sequencing commands
|
|
|
|
By calling one function after another, you can create an animation:
|
|
|
|
```typescript
|
|
basic.showLeds(`
|
|
. # . # .
|
|
. . . . .
|
|
. . # . .
|
|
# . . . #
|
|
. # # # .
|
|
`)
|
|
basic.showLeds(`
|
|
. # . # .
|
|
. . . . .
|
|
. . . . .
|
|
. # # # .
|
|
# . . . #
|
|
`)
|
|
```
|
|
|
|
## The Semicolon
|
|
|
|
Coming soon...
|
|
|