示例#1
0
def change_terminal(pokemon):
    adapter = identify()
    adapter.set_pokemon(pokemon)
示例#2
0
def clear_terminal():
    adapter = identify()
    adapter.clear()
示例#3
0
def change_terminal(image_file_path):
    adapter = identify()
    if adapter is None:
        print("Terminal not supported")
    adapter.set_image_file_path(image_file_path)