29 lines
622 B
Python
29 lines
622 B
Python
|
import board
|
||
|
|
||
|
from kmk.kmk_keyboard import KMKKeyboard as _KMKKeyboard
|
||
|
from kmk.matrix import DiodeOrientation
|
||
|
|
||
|
# from kmk.matrix import intify_coordinate as ic
|
||
|
|
||
|
|
||
|
class KMKKeyboard(_KMKKeyboard):
|
||
|
col_pins = (
|
||
|
board.D24,
|
||
|
board.D25,
|
||
|
board.D26,
|
||
|
board.D27,
|
||
|
board.D28,
|
||
|
board.D29,
|
||
|
board.D30,
|
||
|
board.D31,
|
||
|
board.D32,
|
||
|
board.D33,
|
||
|
board.D34,
|
||
|
board.D35,
|
||
|
)
|
||
|
|
||
|
row_pins = (board.D3, board.D4, board.D5, board.D6, board.D7, board.D8)
|
||
|
|
||
|
diode_orientation = DiodeOrientation.ROWS
|
||
|
# diode_orientation = DiodeOrientation.COLUMNS
|