This commit is contained in:
Tom Ball
2016-07-02 18:27:49 -04:00
parent 5bea47a094
commit 2742dba0c4

25
docs/js/sequence.md Normal file
View File

@ -0,0 +1,25 @@
## Sequencing commands
By calling one function after another, you can create an animation:
```typescript
basic.showLeds(`
. # . # .
. . . . .
. . # . .
# . . . #
. # # # .
`)
basic.showLeds(`
. # . # .
. . . . .
. . . . .
. # # # .
# . . . #
`)
```
## The Semicolon
Coming soon...