mirror of
https://forge.apps.education.fr/blender-edutech/ropy.git
synced 2024-01-27 08:23:20 +01:00
21 lines
647 B
Python
21 lines
647 B
Python
from microbit import uart, sleep
|
|
from microbit import *
|
|
|
|
###############################################################################
|
|
# microbit-lecteur_portserie.py
|
|
# @title: Lecteur du port serie d'une carte micro:bit
|
|
# @project: Ropy (Blender-EduTech)
|
|
###############################################################################
|
|
|
|
uart.init(baudrate= 115200) # Initialisation du port série
|
|
|
|
while True:
|
|
|
|
while not uart.any(): # Attente d'un message
|
|
pass
|
|
|
|
display.scroll('ok : ') # Réception d'une message
|
|
content = uart.readline()
|
|
display.scroll(content[:-1]) # Affichage du message sans le '/n'
|
|
sleep(400)
|