pxt-calliope/docs/courses/blocks-to-javascript/starter-blocks.md

112 lines
2.9 KiB
Markdown
Raw Normal View History

# Starter Blocks
## ~ hint
2018-10-04 18:06:58 +02:00
Use your knowledge of blocks to learn JavaScript faster.
## ~
2018-10-03 22:15:22 +02:00
MakeCode can convert your blocks to JavaScript and back. Start your program with blocks and then jump into JavaScript as an easy way to begin working in the code.
## Do it blocks then convert
2018-10-03 22:15:22 +02:00
So you are pretty familiar with the blocks editor and still getting used to JavaScript? MakeCode can convert any block code into JavaScript. Let's see it in action.
2018-10-03 22:15:22 +02:00
* Create a simple program in the code editor.
```blocks
input.onButtonPressed(Button.A, function () {
basic.showLeds(`
. . . . .
. . . . .
. . # . .
. . . . .
. . . . .
`)
})
```
2018-10-03 22:15:22 +02:00
* Click on the **{} JavaScript** button in the top menu to convert the blocks to JavaScript. Voila!
```typescript
input.onButtonPressed(Button.A, function () {
basic.showLeds(`
. . . . .
. . . . .
. . # . .
. . . . .
. . . . .
`)
})
```
## Go back to blocks
2018-10-03 22:15:22 +02:00
Do you want to go back to editing with blocks again? MakeCode can convert your JavaScript code back into blocks.
2018-10-03 22:15:22 +02:00
* Replace a few dots `.` with hashmarks `#`.
```typescript
input.onButtonPressed(Button.A, function () {
basic.showLeds(`
. . . . .
. . # . .
. # # # .
. . # . .
. . . . .
`)
})
```
### ~ hint
2018-10-03 22:15:22 +02:00
Well, you changed your JavaScript code and nothing works anymore. You see gobs of red squiggles and you don't understand why... Don't panic, use the **Undo** button to revert your changes until everything works again.
### ~
2018-10-03 22:15:22 +02:00
* Click on the **Blocks** button in the top to convert the JavaScript back to blocks.
```blocks
input.onButtonPressed(Button.A, function () {
basic.showLeds(`
. . . . .
. . # . .
. # # # .
. . # . .
. . . . .
`)
})
```
## Grey blocks are a good sign!
2018-10-03 22:15:22 +02:00
If you start to write more complex JavaScript (it's great that you are!), MakeCode might not be able to convert it back to blocks. In that case, you will see _grey blocks_ in your block code. They represent chunks of JavaScript that are too complicated for blocks.
2018-10-03 22:15:22 +02:00
* Go back to **JavaScript** and add a second frame to create animation. This is something you can do in JavaScript but not in blocks.
```typescript
input.onButtonPressed(Button.A, function () {
basic.showLeds(`
. . . . . . . . . .
. . # . . . # # # .
. # # # . . # # # .
. . # . . . # # # .
. . . . . . . . . .
`)
})
```
2018-10-03 22:15:22 +02:00
* Go to the **Blocks** editor and you will see a big **grey** block in the button handler. This is because you are creating code too complex for the blocks. Take it as a compliment!
```blocks
input.onButtonPressed(Button.A, function () {
basic.showLeds(`
. . . . . . . . . .
. . # . . . # # # .
. # # # . . # # # .
. . # . . . # # # .
. . . . . . . . . .
`)
})
```