Show Arrow
Shows the selected arrow on the LED screen
basic.showArrow(ArrowNames.North)
Parameters
direction
, the identifier of the arrow to displayinterval
(optional), the time to display in milliseconds. default is 400.
Example
This program shows all eight arrows.
for (let index = 0; index <= 7; index++) {
basic.showArrow(index)
basic.pause(300)
}