mirror of
https://github.com/pybricks/pybricks-api.git
synced 2026-09-12 01:24:17 +00:00
13 lines
284 B
Python
13 lines
284 B
Python
# SPDX-License-Identifier: MIT
|
|
# Copyright (c) 2020 The Pybricks Authors
|
|
|
|
from ._common import Speaker, Battery, ColorLight, KeyPad
|
|
from .media.ev3dev import Image
|
|
|
|
class EV3Brick:
|
|
screen: Image
|
|
speaker: Speaker
|
|
battery: Battery
|
|
light: ColorLight
|
|
buttons = KeyPad
|