pxt-microbit
Version:
micro:bit target for Microsoft MakeCode (PXT)
31 lines (19 loc) • 807 B
Markdown
Learn how to create a counter with with on button pressed.
Game Library
* [activity](/lessons/game-counter/activity)
* [challenges](/lessons/game-counter/challenges)
Learn how to create game blocks to keep track of the current score. We will be learning how to create a game using the blocks called `add points to score`, `score` as well as simple commands such as on button pressed and show number.
```cards
game.addScore(1)
input.onButtonPressed(Button.A, () => {})
basic.showNumber(0)
```
* learn how arithmetic operators operate on numbers and return a number
* learn how to run code when an input button is pressed
* learn how to show a score on the LED screen