doc/iodevices: add note about EV3 compatibility.

Some iodevices are only available on EV3 (for now or forever).
This commit is contained in:
Laurens Valk
2020-01-02 16:02:10 +01:00
parent f73e7f08bc
commit af3954989a
2 changed files with 11 additions and 2 deletions
+10 -1
View File
@@ -4,16 +4,22 @@
.. automodule:: pybricks.iodevices
:no-members:
LUMPDevice
LUMP Device
^^^^^^^^^^^^^
.. autoclass:: pybricks.iodevices.LUMPDevice
Analog Sensor
^^^^^^^^^^^^^
This class is available on EV3 only.
.. autoclass:: pybricks.iodevices.AnalogSensor
I2C Device
^^^^^^^^^^^^^
This class is available on EV3 only.
.. autoclass:: pybricks.iodevices.I2CDevice
.. toggle-header::
@@ -59,6 +65,9 @@ the `ev3dev I2C`_ page.
UART Device
^^^^^^^^^^^^^
This class is available on EV3 only.
.. autoclass:: pybricks.iodevices.UARTDevice
.. toggle-header::
+1 -1
View File
@@ -1,4 +1,4 @@
"""Custom motors and sensors."""
"""Generic input/output devices."""
class LUMPDevice():