pxt-calliope/docs/docs.md
2016-06-14 14:39:31 -04:00

726 B

Documentation

basic.forever(() => {
  basic.showString("DOCS ");
})
input.onButtonPressed(Button.A, () => {
    led.stopAnimation();
    basic.showLeds(`
. . . . .
. # . # .
. . . . .
# . . . #
. # # # .`);
});
input.onButtonPressed(Button.B, () => {
    led.stopAnimation();
    basic.showLeds(`
. # . # .
# . # . #
# . . . #
. # . # .
. . # . .`);
});

Developers

  • Learn about packages (possibly using C++ or ARM thumb)