Files
pybricks-api/pybricks/ev3brick.py
T
Laurens Valk 529f8fe31c api: rename _common to builtins
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.
2019-10-18 16:05:23 +02:00

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()