Displaying Custom Images#

It is possible to create custom images on the 5x5 LED matrix display. TODO

Creating a Custom Image of A Coyote#

coyote

There are two methods to create a custom of the coyote above. TODO

Method #1 (More Visual)#

# Imports go at the top
from microbit import *

# Create a custom image of a coyote
coyote = Image("99099:"
               "09990:"
               "90909:"
               "99999:"
               "00900")

# Display the custom image
display.show(coyote)

Method #2 (One Line)#

# Imports go at the top
from microbit import *

# Create a custom image of a coyote
coyote = Image("99099:09990:90909:99999:00900")

# Display the custom image
display.show(coyote)

#

Checkpoint: Creating Custom Images#

quiz-custom-image-microbit

Which of the following code snippets is used to create the custom image above?

quiz-custom-image