from microbit import * from asteroids_game_model import Game def show(game): """ Takes game object (instance of Game class) and visualizes it on microbit's led-matrix. """ pass g = Game(...) # create Game object while True: # call methods of Game object ... show(g) sleep(...)