pxt-calliope/docs/js/seqeunce.md
2016-07-02 10:18:45 -04:00

318 B

Sequencing commands

By calling one function after another, you can create an animation:

basic.showLeds(`
    . # . # .
    . . . . .
    . . # . .
    # . . . #
    . # # # .
    `)
basic.showLeds(`
    . # . # .
    . . . . .
    . . . . .
    . # # # .
    # . . . #
    `)

The Semicolon