mirror of
https://github.com/pybricks/pybricks-api.git
synced 2026-09-11 17:14:41 +00:00
Because this module describes devices that can be built into a hub or other device. Since this design is now explicitly shown in the docs as well, we don't need to hide this module in the package.
10 lines
205 B
Python
10 lines
205 B
Python
"""LEGO® MINDSTORMS® EV3 Brick."""
|
|
|
|
from .builtins import Speaker, Display, Battery, ColorLight, KeyPad
|
|
|
|
sound = Speaker()
|
|
display = Display()
|
|
battery = Battery()
|
|
light = ColorLight()
|
|
buttons = KeyPad()
|