pxt-calliope/docs/lessons/snowflake-fall.md
2016-03-29 16:17:34 -07:00

1.0 KiB

snowflake fall blocks lesson

design a blinking rectangle animation #animation #loop #forever #docs

@video td/videos/snowflake-fall-0

Topic

Forever

Prior learning/place of lesson in scheme of work

Learn how to show LEDs with a, pause to pause program execution for a specified amount of milliseconds. We will be learning how to show images using forever loop as well as simple commands, such as pause and show LEDs.

Documentation

basic.showLeds(`
    . . . . .
    . . . . .
    . . # . .
    . . . . .
    . . . . .
    `)
basic.pause(100)
basic.forever(() => {
    
})