UART を使って PC (REPL) から micro:bit へテキストを送る / microbit.uart.

参考: Programming the BBC micro:bit: Getting Started with MicroPython, p.135
 
mu エディターの REPL ペインに打ち込んだテキストを micro:bit のディスプレイに表示する。
ただの UART なので、両者で設定を合わせれば tera term などのターミナルでも同じように使える。

from microbit import *
uart.init(115200)
while True:
    if uart.any():               # any() メソッドは、まだ読み込まれていないデータがないかどうかを確認する。
        message = uart.readall() # readall() メソッドは、uart に乗ってきたテキストをフェッチする。
        display.scroll(message)