updated docs menu
This commit is contained in:
parent
7f9f14df18
commit
fd02bd9407
@ -2,10 +2,6 @@
|
|||||||
|
|
||||||
Are you ready to build cool BBC micro:bit programs? For each challenge, reorder the blocks to recreate the program.
|
Are you ready to build cool BBC micro:bit programs? For each challenge, reorder the blocks to recreate the program.
|
||||||
|
|
||||||
## Open [https://m.pxt.io](/) and create a new **Blocks Editor** project
|
|
||||||
|
|
||||||
## Basic
|
|
||||||
|
|
||||||
### Show leds
|
### Show leds
|
||||||
|
|
||||||
Use the blocks below to draw a figure on the screen. You can redo the smiley face or try something else!
|
Use the blocks below to draw a figure on the screen. You can redo the smiley face or try something else!
|
||||||
@ -22,7 +18,7 @@ basic.showLeds(`
|
|||||||
|
|
||||||
To transfer your code to the BBC micro:bit,
|
To transfer your code to the BBC micro:bit,
|
||||||
* connect your micro:bit to the computer using the USB cable
|
* connect your micro:bit to the computer using the USB cable
|
||||||
* click on **Download**
|
* click on **Compile**
|
||||||
* drag&drop the **.hex** file into the **MICROBIT** drive
|
* drag&drop the **.hex** file into the **MICROBIT** drive
|
||||||
* wait till the yellow light is done blinking!
|
* wait till the yellow light is done blinking!
|
||||||
|
|
||||||
@ -47,6 +43,11 @@ Show one image after the other to create an animation by snapping them together.
|
|||||||
`)
|
`)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
To transfer your code to the BBC micro:bit,
|
||||||
|
* connect your micro:bit to the computer using the USB cable
|
||||||
|
* click on **Compile**
|
||||||
|
* drag&drop the **.hex** file into the **MICROBIT** drive
|
||||||
|
* wait till the yellow light is done blinking!
|
||||||
|
|
||||||
### Repeat forever
|
### Repeat forever
|
||||||
|
|
||||||
@ -77,8 +78,6 @@ basic.forever(() => {
|
|||||||
Use the blocks ``show leds`` and ``forever``
|
Use the blocks ``show leds`` and ``forever``
|
||||||
to create your own custom awesome animation!
|
to create your own custom awesome animation!
|
||||||
|
|
||||||
## Inputs
|
|
||||||
|
|
||||||
### Button A and B
|
### Button A and B
|
||||||
|
|
||||||
Unshuffle the blocks so that the micro:bit shows "YES" when button A is pressed, and "NO" when B is pressed.
|
Unshuffle the blocks so that the micro:bit shows "YES" when button A is pressed, and "NO" when B is pressed.
|
||||||
|
@ -18,4 +18,31 @@ To remove a package, click on the garbage button in the file list next to the pa
|
|||||||
|
|
||||||
## Publishing libraries
|
## Publishing libraries
|
||||||
|
|
||||||
Packages can be published from the pxt command line. We are still sorting out the details.
|
Packages can be published from the pxt command line. We are still sorting out the details.
|
||||||
|
|
||||||
|
## Localizing libraries
|
||||||
|
|
||||||
|
It is possible to package localization strings for the **jsDoc** description associated to the API in the package.
|
||||||
|
|
||||||
|
When compiling a package, the PXT compiler generates a `strings.json` file under the `_locales/` folder.
|
||||||
|
This file contains a map from the symbol name to the en
|
||||||
|
|
||||||
|
```
|
||||||
|
{
|
||||||
|
...
|
||||||
|
"basic": "Provides access to basic micro:bit functionality.",
|
||||||
|
...
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
```
|
||||||
|
{
|
||||||
|
"basic.clearScreen": "Eteint toutes les diodes."
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
```
|
||||||
|
_locales/
|
||||||
|
_locales/fr/strings.json
|
||||||
|
_locales/pt-BR/strings.json
|
||||||
|
```
|
||||||
|
@ -94,13 +94,17 @@
|
|||||||
"path": "/about"
|
"path": "/about"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Lessons",
|
"name": "Getting Started",
|
||||||
"path": "/lessons"
|
"path": "/getting-started"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Reference",
|
"name": "Reference",
|
||||||
"path": "/reference"
|
"path": "/reference"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "Lessons",
|
||||||
|
"path": "/lessons"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Device",
|
"name": "Device",
|
||||||
"path": "/device"
|
"path": "/device"
|
||||||
|
Loading…
Reference in New Issue
Block a user