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 a75cadf commit 648078aCopy full SHA for 648078a
CircuitPython_Tandy1000Keyboard_QTPy_RP2040/code.py
@@ -63,10 +63,10 @@
63
# D12 = green = CN3 = CLOCK
64
# D13 = yellow = CN4 = /BUSY
65
66
-KBD_NRESET = board.D10
67
-KBD_DATA = board.D11
68
-KBD_CLOCK = board.D12
69
-KBD_NBUSY = board.D13
+KBD_NRESET = board.MISO
+KBD_DATA = board.RX
+KBD_CLOCK = board.SCK # Note that KBD_CLOCK must be 1 GPIO above KBD_DATA
+KBD_NBUSY = board.MOSI
70
71
# Assert busy
72
busy_out = digitalio.DigitalInOut(KBD_NBUSY)
0 commit comments