Files
pybricks-api/pybricks/hubs.pyi
T
David Lechner dca8518575 pybricks: add type hints for v2
This adds PEP 561 style type hints for Pybricks v2 (just EV3).
2020-12-28 16:21:56 -06:00

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