pxt-calliope/docs/reference/basic.md
Sam El-Husseini e3975e65e5 pxt-microbit Accessibility PR (#529)
* Accessibility changes
2017-09-07 13:42:08 -07:00

794 B

Basic

Use basic @boardname@ functions and actions.

basic.showNumber(0);
basic.showIcon(IconNames.Heart);
basic.showLeds(`
. . . . .
. . . . .
. . # . .
. . . . .
. . . . .
`);
basic.showString("Hello!");
basic.clearScreen();
basic.forever(() => {
    
});
basic.pause(100);
basic.showArrow(ArrowNames.North);
basic.showAnimation(`
. . . . .
. . . . .
. . # . .
. . . . .
. . . . .
`);

See also

showNumber, showIcon, showLeds, showString, clearScreen, forever, pause, showArrow, showAnimation