mirror of
https://github.com/pybricks/pybricks-api.git
synced 2026-09-12 09:37:25 +00:00
20 lines
376 B
Python
20 lines
376 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()
|