pxt-calliope/docs/lessons/answering-machine.md
Michael Elliot Braun 40405b7e7b updated lessons
2016-03-29 15:59:00 -07:00

1.0 KiB

answering machine blocks lesson

create an answering machine on the BBC micro:bit #docs

@video td/videos/answering-machine-0

Topic

Show String

Prior learning / place of lesson in scheme of work

Learn how to creating a message with a string, show string to write your message. We will be learning how to create a message using simple commands, such as show string and on button pressed.

Documentation

basic.showString('Hi!')

input.onButtonPressed(Button.A, () => {
    
})

Objectives

  • 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