Skip to content

Commit 70b3b2f

Browse files
committed
fix pin names for generic feather case using RX and TX instead of unreliable D names
restores functionality for Feather ESP32S2
1 parent cfba16f commit 70b3b2f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_matrixportal/matrix.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@ def __init__(
140140
board.D12,
141141
]
142142
clock_pin = board.D13
143-
latch_pin = board.D0
144-
oe_pin = board.D1
143+
latch_pin = board.RX
144+
oe_pin = board.TX
145145
else:
146146
# Metro/Grand Central Style Board
147147
if alt_addr_pins is None and height <= 16:

0 commit comments

Comments
 (0)