mirror of
https://github.com/pybricks/pybricks-api.git
synced 2026-09-12 01:24:17 +00:00
These code samples are rendered in the docs, so we include them here. For the git history of these snippets, see: https://github.com/pybricks/pybricks-projects/commits/f4914069aaacfd9ab1e0dd6f05524f62cfc56b29/snippets
35 lines
742 B
Python
35 lines
742 B
Python
#!/usr/bin/env pybricks-micropython
|
|
|
|
from pybricks.hubs import EV3Brick
|
|
from pybricks.tools import wait
|
|
from pybricks.media.ev3dev import Font
|
|
|
|
# It takes some time for fonts to load from file, so it is best to only
|
|
# load them once at the beginning of the program like this:
|
|
tiny_font = Font(size=6)
|
|
big_font = Font(size=24, bold=True)
|
|
chinese_font = Font(size=24, lang='zh-cn')
|
|
|
|
|
|
# Initialize the EV3
|
|
ev3 = EV3Brick()
|
|
|
|
|
|
# Say hello
|
|
ev3.screen.print('Hello!')
|
|
|
|
# Say tiny hello
|
|
ev3.screen.set_font(tiny_font)
|
|
ev3.screen.print('hello')
|
|
|
|
# Say big hello
|
|
ev3.screen.set_font(big_font)
|
|
ev3.screen.print('HELLO')
|
|
|
|
# Say Chinese hello
|
|
ev3.screen.set_font(chinese_font)
|
|
ev3.screen.print('你好')
|
|
|
|
# Wait some time to look at the screen
|
|
wait(5000)
|