Ajout du jumeau numérique Maqueen (micro:bit)

This commit is contained in:
Philippe Roy 2022-11-04 15:19:28 +01:00
parent 94d0fae8a0
commit 4e7d264c99
5 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
from microbit import uart, sleep
from microbit import *
uart.init(baudrate=9600) # Initialisation du port série
while True:
while not uart.any(): # Attente d'un message
pass
display.scroll('ok : ') # Bonne recéption du message
content = uart.readline()
display.scroll(content[:-1]) # Affichage du message sans le '/n'
sleep(400)