Fix bad information in docstring

This commit is contained in:
arofarn 2021-06-27 20:16:10 +02:00
parent 52f2f2088d
commit 045ce9724e
1 changed files with 9 additions and 2 deletions

View File

@ -165,8 +165,15 @@ class NeoTrellisM4:
""" """
Driver for the Adafruit NeoTrellis. Driver for the Adafruit NeoTrellis.
:param left_part: if None (or ommitted) the class create a :param left_part: if None (or ommitted) the class create a
neotrellis.multitrellis-compatible object for the right half of the neotrellis.multitrellis-compatible object for the left half of the
TrellisM4 board. Else for the left part. TrellisM4 board. Else le right part is created and the arguement
should be the left part object.
.. code-block:: python
from neotrellism4 import NeoTrellisM4
trellis_left = NeoTrellisM4()
trellis_right = NeoTrellisM4(left_part=trellis_left)
""" """
EDGE_HIGH = const(0) EDGE_HIGH = const(0)