How to Create Custom Image

The Python Microbit reference shows how to make a custom boat image, which you can see pictured at the bottom.

Here is the code:

from microbit import * 
boat = Image(   "05050:"
                "05050:"
                "999999:"
                "09990"
            )
            
display.show(boat)


 

microbit-custom-image-of-boat