pxt-calliope/docs/docs.md

37 lines
726 B
Markdown
Raw Normal View History

2016-03-26 00:47:20 +01:00
# Documentation
2016-05-17 18:35:55 +02:00
```sim
basic.forever(() => {
basic.showString("DOCS ");
})
input.onButtonPressed(Button.A, () => {
led.stopAnimation();
basic.showLeds(`
. . . . .
. # . # .
. . . . .
# . . . #
. # # # .`);
});
input.onButtonPressed(Button.B, () => {
led.stopAnimation();
basic.showLeds(`
. # . # .
# . # . #
# . . . #
. # . # .
. . # . .`);
});
```
2016-03-26 00:47:20 +01:00
2016-06-14 16:55:13 +02:00
* **[getting started](/getting-started)**
2016-06-12 04:28:57 +02:00
* Get started with [projects](/projects)
2016-06-14 20:39:31 +02:00
* Browse the [micro:bit APIs](/reference)
* Learn more about the [micro:bit device](/device)
2016-06-02 23:47:37 +02:00
* Frequently Asked Question [faq](/faq)
2016-05-17 18:35:55 +02:00
* Follow up with the [release notes](/release-notes)
### Developers
* Learn about [packages](/packages) (possibly using C++ or ARM thumb)