Mighty Microbit Basic
latest
  • Lesson 1 beautiful image lesson
  • Lesson 2 lucky 7 blocks lesson
  • Lesson 3 answering machine blocks lesson
  • Lesson 4 game of chance blocks lesson
  • Lesson 5 smiley blocks lesson
  • Lesson 6 magic logo lesson
  • Lesson 7 snowflake fall blocks lesson
  • Lesson 8 screen wipe blocks lesson
  • Lesson 9 flashing heart blocks lesson
  • Lesson 10 blink blocks lesson
    • Topic
    • Quick links
      • blink blocks activity
      • blink blocks quiz
      • blink blocks quiz answers
        • 1. Describe what plot does?
        • 2. Draw which LED is ON after running this code
        • 3. Draw which LED is ON after running this code
        • 4. Draw which LED is ON after running this code
      • blink blocks challenges
    • Prior learning / place of lesson in scheme of work
    • Documentation
    • Objectives
  • Lesson 11 night light lesson
  • Lesson 12 game counter lesson
  • Lesson 13 happy birthday blocks lesson
Mighty Microbit Basic
  • Docs »
  • Lesson 10 blink blocks lesson »
  • blink blocks quiz answers
  • Edit on GitHub

blink blocks quiz answers¶

Learn how to create a blinking LED script.

This is the answer key for the blink quiz.

1. Describe what plot does?¶

Answers will vary. In general, plot refers to the code that turns on a specific LED. We specify the LED using x, y coordinates.

2. Draw which LED is ON after running this code¶

led.plot(2, 2)

By default, the position of an LED on Blink Tutorial is set to the centre of the screen. This code turns on the centre LED

3. Draw which LED is ON after running this code¶

led.plot(0, 0)

This code turns on specific LED. Plot turns on the specified LED on the LED screen. We specify the LED using x, y coordinates.

  • x - the x coordinate or horizontal position (0)
  • y - the y coordinate or vertical position (0)

4. Draw which LED is ON after running this code¶

led.plot(4, 4)

This code turns on specific LED. Plot turns on the specified LED on the LED screen. We specify the LED using x, y coordinates.

  • x - the x coordinate or horizontal position (4)
  • y - the y coordinate or vertical position (4)
Next Previous

© Copyright 2018, sean Revision faf697ce.

Built with Sphinx using a theme provided by Read the Docs.