Cybersecurity course logo

PX_lastname_FullName

Instructions

Lesson 1

Launch the micro:bit Python editor

Use the new version of the micro:bit.

Instructions

Complete spelling out your full name.
-One letter at a time with the display.set_pixel(x,x,x)
-Pause for 3 seconds
-Clear the display
-Display the next letter.
-Have this run continuously. (Recall what you used in the previous assignments.)

Spell your full name. Click here for guidance.

Additional helpful information:

Hint: To clear the display
microbit.display.clear()
Sets the brightness of all LEDs to 0 (off).

Hints:

from microbit import *
display.set_pixel(2,0,9)
display.set_pixel(1,1,9)
display.set_pixel(2,0,9)

The name of the file will be: PX_lastname_FullName

Files to save on Google Drive and submit (Google Classroom)

  1. PX_lastname_FullName.png — Screenshot inside Python interpreter.
  2. PX_lastname_FullName.py — Python source file.
  3. PX_lastname_FullName.txt — Plain-text copy of your code.
  4. PX_lastname_FullName.hex — Hex file to run on the micro:bit hardware.
  5. PX_lastname_FullName.mp4 — Short demo video of the program running.

Submission requirements