Files
pybricks-api/pybricks/ev3brick.py
T
2019-06-04 15:45:36 +02:00

20 lines
375 B
Python

"""LEGO® MINDSTORMS® EV3 Brick."""
from _common import Speaker, Display, Battery, ColorLight
def buttons():
"""Check which buttons on the EV3 Brick are currently pressed.
:returns: List of pressed buttons.
:rtype: List of :class:`Button <parameters.Button>`
"""
pass
sound = Speaker()
display = Display()
battery = Battery()
light = ColorLight()