pxt-calliope/docs/reference/basic.md

722 B

Basic

Provides access to basic @boardname@ functionality.

basic.showNumber(0);
basic.showLeds(`
. . . . .
. . . . .
. . # . .
. . . . .
. . . . .
`);
basic.showString("Hello!");
basic.clearScreen();
basic.forever(() => {
    
});
basic.pause(100);
basic.plotLeds(`
. . . . .
. . . . .
. . # . .
. . . . .
. . . . .
`);
basic.showAnimation(`
. . . . .
. . . . .
. . # . .
. . . . .
. . . . .
`);

See Also

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