pxt-calliope/docs/lessons/game-of-chance.md

37 lines
812 B
Markdown
Raw Normal View History

2016-03-26 00:47:20 +01:00
# game of chance blocks lesson
create an answering machine on the BBC micro:bit #docs
## Topic
Game Library
## Quick Links
* [activity](/microbit/lessons/game-of-chance/activity)
* [challenges](/microbit/lessons/game-of-chance/challenges)
## Prior learning / place of lesson in scheme of work
Learn how to creating a message with a **game over** to write your message. We will be learning how to create a message using show string and on button pressed.
## Documentation
2016-03-30 00:59:00 +02:00
```docs
game.gameOver()
2016-03-26 00:47:20 +01:00
2016-03-30 00:59:00 +02:00
basic.showString("Hello!")
2016-03-26 00:47:20 +01:00
2016-03-30 00:59:00 +02:00
input.onButtonPressed(Button.A, () => {
})
2016-03-26 00:47:20 +01:00
2016-03-30 00:59:00 +02:00
```
2016-03-26 00:47:20 +01:00
2016-03-30 00:59:00 +02:00
## Objectives
2016-03-26 00:47:20 +01:00
2016-03-30 00:59:00 +02:00
* learn how to use the game library
* learn how to show a string on the LED screen one character at a time
* learn how to use to register an event handler that will execute whenever an input button is pressed