pxt-calliope/docs/reference.md

24 lines
354 B
Markdown
Raw Normal View History

2016-06-15 03:37:55 +02:00
# Micro:bit APIs
2016-03-26 00:47:20 +01:00
2016-04-05 22:23:42 +02:00
```namespaces
2016-05-05 20:32:35 +02:00
basic.showNumber(0);
input.onButtonPressed(Button.A, () => {
});
music.playTone(0, 0);
2016-05-19 22:56:24 +02:00
led.plot(0, 0);
radio.sendNumber(0);
2016-05-05 20:32:35 +02:00
game.addScore(1);
images.createImage(`
. . . . .
. . . . .
. . # . .
. . . . .
. . . . .
`);
2016-04-05 22:23:42 +02:00
pins.digitalReadPin(DigitalPin.P0);
serial.writeNumber(0);
2016-05-05 20:32:35 +02:00
control.inBackground(() => {
});
2016-06-14 18:17:54 +02:00
```