2016-03-25 16:47:20 -07:00
|
|
|
# Documentation
|
|
|
|
|
2016-05-17 09:35:55 -07: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-25 16:47:20 -07:00
|
|
|
|
2016-05-17 09:35:55 -07:00
|
|
|
* **[getting started](/getting-started)**
|
2016-05-05 14:20:18 +01:00
|
|
|
* Browse the [API reference](/reference)
|
2016-04-13 08:27:45 -07:00
|
|
|
* Learn more about the [device](/device)
|
|
|
|
* Get started with [lessons](/lessons)
|
2016-05-17 09:35:55 -07:00
|
|
|
* Follow up with the [release notes](/release-notes)
|
|
|
|
|
|
|
|
### Developers
|
|
|
|
|
|
|
|
* Learn about [packages](/packages) (possibly using C++ or ARM thumb)
|