We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45cea61 commit 9a67470Copy full SHA for 9a67470
adafruit_ssd1305.py
@@ -241,6 +241,7 @@ def __init__(
241
height,
242
external_vcc=external_vcc,
243
reset=reset,
244
+ col=col # <-- Forwarded col parameter to base class
245
)
246
247
def write_cmd(self, cmd: int) -> None:
@@ -284,7 +285,8 @@ def __init__(
284
285
external_vcc: bool = False,
286
baudrate: int = 8000000,
287
polarity: int = 0,
- phase: int = 0
288
+ phase: int = 0,
289
+ col=None
290
):
291
self.rate = 10 * 1024 * 1024
292
dc.switch_to_output(value=False)
@@ -299,6 +301,7 @@ def __init__(
299
301
300
302
303
304
+ col=col
305
306
307
0 commit comments