mirror of
https://github.com/pybricks/pybricks-api.git
synced 2026-09-12 17:46:19 +00:00
Also activate auto formatting. Bump flake8 and mark black disagreements in setup.cfg.
13 lines
254 B
Python
13 lines
254 B
Python
from pybricks.hubs import PrimeHub
|
|
from pybricks.tools import wait
|
|
|
|
# Initialize the hub.
|
|
hub = PrimeHub()
|
|
|
|
# Display the letter A for two seconds.
|
|
hub.display.char("A")
|
|
wait(2000)
|
|
|
|
# Display text, one letter at a time.
|
|
hub.display.text("Hello, world!")
|