pxt-calliope/docs/reference/basic/show-arrow.md
2017-02-27 10:51:52 -08:00

355 B

Show Arrow

Shows the selected arrow on the LED screen

basic.showArrow(ArrowNames.North)

Example

This program shows all eight arrows.

for (let index = 0; index <= 7; index++) {
    basic.showArrow(index)
    basic.pause(300)
}

See also

showIcon, showLeds