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-05-17 18:35:55 +02:00
|
|
|
* **[getting started](/getting-started)**
|
2016-05-05 15:20:18 +02:00
|
|
|
* Browse the [API reference](/reference)
|
2016-04-13 17:27:45 +02:00
|
|
|
* Learn more about the [device](/device)
|
|
|
|
* Get started with [lessons](/lessons)
|
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)
|