pxt-calliope/docs/reference.md

28 lines
394 B
Markdown
Raw Normal View History

2016-03-25 16:47:20 -07:00
# Reference
2016-04-05 13:23:42 -07:00
```namespaces
2016-04-05 23:11:48 -07:00
for (let i = 0;i<5;++i) {}
if (true){}
let x = 0;
Math.random(5);
2016-05-05 11:32:35 -07:00
basic.showNumber(0);
input.onButtonPressed(Button.A, () => {
});
led.plot(0, 0);
music.playTone(0, 0);
game.addScore(1);
images.createImage(`
. . . . .
. . . . .
. . # . .
. . . . .
. . . . .
`);
2016-04-05 13:23:42 -07:00
pins.digitalReadPin(DigitalPin.P0);
2016-05-05 11:32:35 -07:00
serial.writeValue(x, 0);
control.inBackground(() => {
});